what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / prashanthi
2
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Why do we use static in c?
Write the syntax and purpose of a switch statement in C.
What functions are used for dynamic memory allocation in c language?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is #error and use of it?
What is header file in c?
What is scope of variable in c?
What does return 1 means in c?
How can I find out the size of a file, prior to reading it in?
Why isnt there a numbered, multi-level break statement to break out
Define recursion in c.
Is main an identifier in c?
How do you redirect a standard stream?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is ponter?