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
In C language what is a 'dangling pointer'?
What is union in c?
What is meant by gets in c?
What does volatile do?
What is the difference between array and pointer?
Why is extern used in c?
Explain low-order bytes.
Explain bitwise shift operators?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What does %d do in c?
What is methods in c?
What is sizeof c?
What is bubble sort technique in c?
What is table lookup in c?