Home / Programming MCQs / C Programming MCQs / Question
R
Q. What is the output of C Program?
int main() { int a[] = {1,2,3,4}; int b[4] = {5,6,7,8}; printf("%d,%d", a[0], b[0]); }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
What will be output for the following code?
Where is a file temporarily stored before read or write operation in C language?
Which escape character can be used to begin a new line in C?
Which format specifier is used to read and print the string using printf() and scanf() in C?
What is the output of C Program with switch statement or block.?
The following statement in ‘C’ int (*f())[ ]; declares
What is the output of C program with strings?
What will be the final values of i and j in the following C code?
Discusssion
Login to discuss.