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
Difference between macros and inline functions? Can a function be forced as inline?
What is identifiers in c with examples?
What is static volatile in c?
What is 1d array in c?
What are variables and it what way is it different from constants?
Why do we use main function?
What is a struct c#?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
can we implement multi-threads in c.
Who is the main contributor in designing the c language after dennis ritchie?
What is the Purpose of 'extern' keyword in a function declaration?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What will be your course of action for a push operation?
how to print the character with maximum occurence and print that number of occurence too in a string given ?