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


Please Help Members By Posting Answers For Below Questions

Here is a good puzzle: how do you write a program which produces its own source code as output?

600


What is context in c?

542


What are the functions to open and close the file in c language?

596


Write a code on reverse string and its complexity.

609


What is the right type to use for boolean values in c? Is there a standard type?

567






Define Array of pointers.

636


c language interview questions & answer

1464


What is difference between static and global variable in c?

540


What is the significance of c program algorithms?

683


What are the keywords in c?

644


What is %lu in c?

688


can we have joblib in a proc ?

1657


Differentiate between calloc and malloc.

761


What are extern variables in c?

550


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

804