Language Basics C

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