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
When should volatile modifier be used?
What are global variables?
What is getch() function?
Why double pointer is used in c?
What is a pointer value and address in c?
What is assignment operator?
Can you write a programmer for FACTORIAL using recursion?
Explain how can I manipulate strings of multibyte characters?
What is structure in c explain with example?
Explain what standard functions are available to manipulate strings?
Is it acceptable to declare/define a variable in a c header?
What are the benefits of organizational structure?
List some of the static data structures in C?
How are 16- and 32-bit numbers stored?
Write a program to print numbers from 1 to 100 without using loop in c?