1 #include <stdio.h> 2 3 int main () 4 { 5 int i=0; 6 printf("%d\n",i); 7 i=1; 8 printf("%d\n",i); 9 10 return 0; 11 } 12