#‎include‬<stdio.h>
void main()
{
int i;
for(i=5;0;i++)
{
printf("%d",i);
}
}
Answer Posted / khushbu srivastva
a error will be generated i.e unreachable code
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Describe wild pointers in c?
c program for searching a student details among 10 student details
What is #line?
Write a program to reverse a linked list in c.
Write a program to reverse a string.
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Why malloc is faster than calloc?
What are the types of bitwise operator?
Explain how can I write functions that take a variable number of arguments?
What is wild pointer in c with example?
Is swift based on c?
When should structures be passed by values or by references?
What does a pointer variable always consist of?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Is it possible to initialize a variable at the time it was declared?