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
What is ambagious result in C? explain with an example.
What is the function of this pointer?
Is linux written in c?
Are the outer parentheses in return statements really optional?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is a class c rental property?
write a program to rearrange the array such way that all even elements should come first and next come odd
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Write a program to print factorial of given number using recursion?
Should I learn c before c++?
What is the explanation for prototype function in c?
Why is c called c not d or e?
what are non standard function in c
What does the error 'Null Pointer Assignment' mean and what causes this error?
Do you know what are the properties of union in c?