int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / geetha
answer is 1,2
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain the difference between malloc() and calloc() in c?
What is LINKED LIST? How can you access the last element in a linked list?
How do I swap bytes?
what are enumerations in C
What is the size of empty structure in c?
What is selection sort in c?
what is the format specifier for printing a pointer value?
Difference between strcpy() and memcpy() function?
Are bit fields portable?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is the best style for code layout in c?
What is scope and lifetime of a variable in c?
Can you please explain the difference between malloc() and calloc() function?
Why void main is used in c?
What is the g value paradox?