A
Q. How many times do we get through the following loop?
int c = 10; while (( c <11 ) { printf("Hello World\n"); }
while (( c <11 ) {...} We tell the computer “As long as the condition is true (10 < 11), repeat the instructions between braces”.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What is the output of C Program with Strings.?
Q. What is the Error of this program?
Q. Variable names beginning with underscore is not encouraged. Why?
Q. What is the output of this program?
Q. Which statement is true about the given code ?
Q. What will be the value of x in the following code snippet?
Q. What is CPP in C programming?
Q. The data structure used to implement recursive function calls _____________.
Q. Choose a correct statement about C file operation program?
Discusssion
Login to discuss.