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 do some people write if(0 == x) instead of if(x == 0)?
In a byte, what is the maximum decimal number that you can accommodate?
Write the control statements in C language
What does the function toupper() do?
What is the concatenation operator?
What is a protocol in c?
How do I use strcmp?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
How can you tell whether a program was compiled using c versus c++?
Is c call by value?
What are formal parameters?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is a program flowchart and how does it help in writing a program?
Why is %d used in c?
What is array of pointers to string?