int i =10
main()
{
int i =20,n;
for(n=0;n<=i;)
{
int i=10
i++;
}
printf("%d", i);
Answer Posted / dips
it doesnt have any terminating condition so it will be
infinite loop ,no output
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is null pointer constant?
What is new line escape sequence?
What are different types of variables in c?
What is a program flowchart and explain how does it help in writing a program?
Tell us something about keyword 'auto'.
What are valid signatures for the Main function?
What is data types?
What does volatile do?
Difference between strcpy() and memcpy() function?
What is the use of c language in real life?
Why is c called c?
Why is c fast?
Explain what is gets() function?
Can we declare function inside main?
What is the symbol indicated the c-preprocessor?