Help for this page

Select Code to Download


  1. or download this
    for(int i=0; i < 100; i++){
       /*do some thing with i */
       printf("this is i: %d", i);
    }
    
  2. or download this
    {
       int i;
    ...
           printf("this is i: %d", i);
       }
    }