Mega Code Archive
Categories
/
C
/
Language Basics
Self increase and decrease operator
#include
int main(void) { int i; i = 0; i++; printf("%d ", i); i--; printf("%d ", i); return 0; }