int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / sateeshbabu aluri
o/p will be: 1 2 only
3 will be ommited because there is no conversion operator
in printf.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Explain the bubble sort algorithm.
What does it mean when the linker says that _end is undefined?
What is the use of bit field?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Explain how can I pad a string to a known length?
Why is c faster?
What is console in c language?
Do you know the difference between exit() and _exit() function in c?
Can 'this' pointer by used in the constructor?
Can you please explain the difference between strcpy() and memcpy() function?
What is d'n in c?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Which built-in library function can be used to match a patter from the string?
How can I do serial ("comm") port I/O?