what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}
Answer Posted / niranjan kumar niraj
output is 1
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is formal argument?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
How to throw some light on the b tree?
Explain spaghetti programming?
i have a written test for microland please give me test pattern
Tell me what is the purpose of 'register' keyword in c language?
When should the const modifier be used?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are two dimensional arrays alternatively called as?
Write a program to generate the Fibinocci Series
Explain how do you generate random numbers in c?
How can you restore a redirected standard stream?
What is the difference between strcpy() and memcpy() function in c programming?
What is d scanf?