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 can I determine whether a machines byte order is big-endian or little-endian?
What is the significance of an algorithm to C programming?
Why do we use header files in c?
Do you know the use of 'auto' keyword?
What are the features of c language?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
can any one provide me the notes of data structure for ignou cs-62 paper
What is hash table in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
write a c program to find the sum of five entered numbers using an array named number
What are the types of data types and explain?
When was c language developed?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What is a const pointer in c?