what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / sanjiv
11
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Explain how do you list files in a directory?
I came across some code that puts a (void) cast before each call to printf. Why?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Explain #pragma statements.
Write a simple code fragment that will check if a number is positive or negative.
What is enumerated data type in c?
What is the use of a static variable in c?
How pointer is different from array?
Which is better between malloc and calloc?
Is null always defined as 0(zero)?
How to establish connection with oracle database software from c language?
What is the return type of sizeof?
Explain how do you sort filenames in a directory?
What is conio h in c?