#include using namespace std; int main() { int num = 20; for ( ; ;) cout << num; return 0; }
There is not a condition in the for loop, So it will loop continuously.
Previous Question Next Question
Your comments will be displayed only after manual approval.