#‎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
Differentiate between a structure and a union.
What is the difference between typedef and #define?
Write a program to print “hello world” without using semicolon?
Explain how do you sort filenames in a directory?
Explain how do you convert strings to numbers in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Is sizeof a keyword in c?
How can I remove the leading spaces from a string?
What are the advantages of c preprocessor?
What are enums in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is equivalent to ++i+++j?
What is floating point constants?
Sir i need notes for structure,functions,pointers in c language can you help me please
How can I avoid the abort, retry, fail messages?