#include <stdio.h> void main() { int n = 0; for (n < 3; n++) printf("Hey..."); }
Compilation Error
In function 'int main()':5:24: error: expected ';' before ')' token for (n < 3; n++)
Previous Question Next Question
Your comments will be displayed only after manual approval.