Help for this page

Select Code to Download


  1. or download this
    for($c=-3;$c<4;$c++){
      printf("%d %d\n",$c,$c % 2); 
    }
    
  2. or download this
    int c;
    for(c=-3;c<4;c++){
      printf("%d  %d\n",c,c%2);
    }