what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}

Answers were Sorted based on User's Feedback



what will be the output of this program main() { int i=1; while (i<=10); { i++; } } ..

Answer / abdulhamid

just wanna know

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More C Interview Questions

What was noalias and what ever happened to it?

0 Answers  


what are the uses of structure?

7 Answers   HCL,


Why do we use return in c?

0 Answers  


what is software?

7 Answers   Wipro,


what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }

3 Answers  






what is difference between overriding and overloading?

1 Answers  


ASCII stands for

1 Answers  


What is the difference between null pointer and the void pointer?

3 Answers  


int *a[5] refers to

12 Answers   TCS,


while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.

1 Answers   TCS,


what is difference between array,strutter,union and pointers

3 Answers   CTS, Lovely Professional University, Mannar Company,


Write a program to print distinct words in an input along with their count in input in decreasing order of their count..

1 Answers  


Categories