In the following program how long will the for loop get executed?
#include
int main()
{
int i=5;
for(;scanf("%s", &i); printf("%d\n", i));
return 0;
}
Answers
Answered by
3
output
The for loop will get executed infinite Times
The for loop will get executed infinite Times
Answered by
3
OUTPUT
The for loop will get executed for infinite Times.
The for loop will get executed for infinite Times.
Similar questions