what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / shanmuga priya
10
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to find a missed value, if you want to store 100 values in a 99 sized array?
How can I make sure that my program is the only one accessing a file?
What is printf () in c?
What is array of structure in c programming?
What is a pointer on a pointer in c programming language?
How does selection sort work in c?
Explain output of printf("Hello World"-'A'+'B'); ?
What is c standard library?
What are the back slash character constants or escape sequence charactersavailable in c?
Is swift based on c?
What are the 5 elements of structure?
how to write optimum code to divide a 50 digit number with a 25 digit number??
write a program to concatenation the string using switch case?
How can I invoke another program or command and trap its output?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?