#&#8206;include&#8236;<stdio.h>
void main()
{
int i;
for(i=5;0;i++)
{
printf("%d",i);
}
}

Answers were Sorted based on User's Feedback



#&#8206;include&#8236;<stdio.h> void main() { int i; for(i=5;0;i++) { printf(&qu..

Answer / khushbu srivastva

a error will be generated i.e unreachable code

Is This Answer Correct ?    7 Yes 1 No

#&#8206;include&#8236;<stdio.h> void main() { int i; for(i=5;0;i++) { printf(&qu..

Answer / deepika agrawal

an error will be encountered in the begining of the program...

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Interview Questions

What is Generic pointer? What is the purpose of Generic pointer? Where it is used?

3 Answers  


What are global variables?

0 Answers  


What is the ANSI C Standard?

0 Answers   Celstream,


What are the 5 data types?

0 Answers  


difference between the array and linked list general difference related to memory

2 Answers  






Can an array be an Ivalue?

0 Answers   EXL,


. Write a program to get a string and to convert the 1st letter of it to uppercase

2 Answers   HTC,


What are unions in c?

0 Answers  


When is an interface "good"?

1 Answers  


write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search

1 Answers   ADP, TCS,


main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }

2 Answers   CSC,


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

0 Answers  


Categories