a=0;
while(a<5)
printf("%d\n",a++);
how many times does the loop occurs?
a.infinite
b.5
c.4
d.6
Answer Posted / vignesh1988i
THIS LOOP OCCURS 5 TIMES. AT THE SIXTH TIME IT BECOMES FALSE
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
Difference between strcpy() and memcpy() function?
What does it mean when a pointer is used in an if statement?
How can I find out the size of a file, prior to reading it in?
What are the scope of static variables?
a c code by using memory allocation for add ,multiply of sprase matrixes
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is enumerated data type in c?
Describe newline escape sequence with a sample program?
Explain the ternary tree?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Is c# a good language?
What is c definition?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is pointer to pointer in c with example?
Which is the best website to learn c programming?