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
What is the purpose of type declarations?
What is the use of putchar function?
What is the data segment that is followed by c?
What is wrong in this statement? scanf(ā%dā,whatnumber);
What is size of union in c?
What is %d called in c?
Do you know what are the properties of union in c?
What are the complete rules for header file searching?
What are the functions to open and close file in c language?
What are the two types of structure?
write a c program for swapping two strings using pointer
What is the difference between array and structure in c?
What is the use of pointers in C?
What do you mean by a local block?
Which is better between malloc and calloc?