C
Q. What will be the output of the following C code?
#include <stdio.h> int main(){ int a = 11; while (a < 20) { printf("%d ", a); a += 2; } return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. We want to round off x, a float, to an int value, The correct way to do is
Q. What is the value of character constant 'A' of ASCII character set?
Q. What is the output of this program?
Q. How to make an infinity loop in C?
Q. Choose a correct statement about C file operation program?
Q. Which option should be selected to work the following C expression?
Q. Operator % in C Language is called.?
Q. How many byte(s) does a char type take in C?
Discusssion
Login to discuss.