#include < stdio.h > void main() { int i=5; printf(“%d,%d,%d,%d,%d”, i++,i–,++i,–i,i); getch(); }
Below you'll find a list of all posts that have been tagged as “increment or decrement operator”
#include < stdio.h > void main() { int i=5; printf(“%d,%d,%d,%d,%d”, i++,i–,++i,–i,i); getch(); }