#import <Foundation/Foundation.h> int main( ) { /* for loop execution */ int a; for( a = 15; a < 20; a++ ) { NSLog(@"value of a: %d\n", a); } return 0; }
Standard input is empty
Standard output is empty
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