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
Why does this code crash?
What are pointers? Why are they used?
how logic is used
what do you mean by enumeration constant?
How can I read in an object file and jump to locations in it?
In c language can we compile a program without main() function?
Differentiate between ordinary variable and pointer in c.
How to implement a packet in C
Explain what is the general form of a c program?
What is a pointer value and address in c?
what is the format specifier for printing a pointer value?
Which of these functions is safer to use : fgets(), gets()? Why?
What are dangling pointers in c?
can we have joblib in a proc ?
What is enumerated data type in c?