fork download
  1. #import <Foundation/Foundation.h>
  2.  
  3. int main( ) {
  4. /* for loop execution */
  5. int a;
  6. for( a = 15; a < 20; a++ ) {
  7. NSLog(@"value of a: %d\n", a);
  8. }
  9. return 0;
  10. }
Success #stdin #stdout #stderr 0.04s 42848KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
2016-05-02 11:29:59.328 prog[13603] value of a: 15
2016-05-02 11:29:59.329 prog[13603] value of a: 16
2016-05-02 11:29:59.329 prog[13603] value of a: 17
2016-05-02 11:29:59.329 prog[13603] value of a: 18
2016-05-02 11:29:59.329 prog[13603] value of a: 19