Mega Code Archive

 
Categories / C / Language Basics
 

Self increase and decrease operator

#include <stdio.h> int main(void) {   int i;   i = 0;   i++;   printf("%d ", i);   i--;   printf("%d ", i);    return 0; }