int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / arunkumar ms
1,2
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Is it better to use malloc() or calloc()?
Do you know the purpose of 'register' keyword?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Explain how can I write functions that take a variable number of arguments?
What are the differences between Structures and Arrays?
how to construct a simulator keeping the logical boolean gates in c
What is a header file?
How macro execution is faster than function ?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What are disadvantages of C language.
In a switch statement, what will happen if a break statement is omitted?
Explain the bubble sort algorithm.
Write a program to print fibonacci series using recursion?
How can you pass an array to a function by value?