Home » C Programming » Declarations and Initializations

In the following program how long will the for loop get executed? #include<stdio.h> int main() { int i=5; for(;scanf("%s", &i); printf("%d\n", i)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!