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
Is this program statement valid? INT = 10.50;
How will you divide two numbers in a MACRO?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Why dont c comments nest?
What is the function of this pointer?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is the process of writing the null pointer?
Is c compiled or interpreted?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
Explain the concept and use of type void.
Explain what is the advantage of a random access file?
Can I initialize unions?
Is null valid for pointers to functions?
What are global variables and explain how do you declare them?