int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / peeyush mishra
output will be 1,2
| Is This Answer Correct ? | 24 Yes | 3 No |
Post New Answer View All Answers
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Suggesting that there can be 62 seconds in a minute?
What are the ways to a null pointer can use in c programming language?
What is the best way to comment out a section of code that contains comments?
What is bash c?
What is hash table in c?
Explain what header files do I need in order to define the standard library functions I use?
What is the main difference between calloc () and malloc ()?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Describe wild pointers in c?
Tell us the use of fflush() function in c language?
What is the difference between if else and switchstatement
Write a program to know whether the input number is an armstrong number.
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above