#‎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
What is meant by int main ()?
Explain is it better to bitshift a value than to multiply by 2?
What is call by value in c?
What are high level languages like C and FORTRAN also known as?
Give the rules for variable declaration?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is volatile variable in c?
What are different types of pointers?
What does malloc () calloc () realloc () free () do?
I have a varargs function which accepts a float parameter?
What is the purpose of macro in C language?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is sizeof c?
What is dynamic variable in c?