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
What does c value mean?
Explain what is the difference between the expression '++a' and 'a++'?
Why c is known as a mother language?
Differentiate between static and dynamic modeling.
Define circular linked list.
Tell me what are bitwise shift operators?
What is the purpose of main( ) in c language?
How can you determine the maximum value that a numeric variable can hold?
What is function in c with example?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Explain what does it mean when a pointer is used in an if statement?
What is the difference between typedef struct and struct?
What does struct node * mean?
What is scope rule in c?
What is LINKED LIST? How can you access the last element in a linked list?