fork download
  1. #include <stdio.h>
  2. int main()
  3.  
  4. {
  5.  
  6. int i;
  7.  
  8. /* for*/
  9. for( i =1; i <= 10; i=i +1 ) {
  10. printf("value of l [FOR]: %d\n,i");
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
value of l [FOR]: -26177704
,ivalue of l [FOR]: 0
,ivalue of l [FOR]: 0
,ivalue of l [FOR]: 0
,ivalue of l [FOR]: 0
,ivalue of l [FOR]: 0
,ivalue of l [FOR]: 0
,ivalue of l [FOR]: 0
,ivalue of l [FOR]: 0
,ivalue of l [FOR]: 0
,i