Home / Programming MCQs / C Programming MCQs / Question
R
Q. What is the output of C Program?
int main() { int a=32; do { printf("%d ", a); a++; }while(a <= 30); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Which file is generated after pre-processing of a C program?
Which gcc flag is used to genarate debug information for any binary file?
What will be the output of the following C code?
What will be the output of the following C code?
Which of the following is not logical operator?
Discusssion
Login to discuss.