int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answer Posted / senthil
will print junk values, as no arguments after printf string present.
Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Can you please explain the difference between strcpy() and memcpy() function?
What is the difference between void main and main in c?
Do you know the difference between exit() and _exit() function in c?
Explain how can type-insensitive macros be created?
What are the properties of union in c?
What is use of null pointer in c?
how can use subset in c program and give more example
How can I make it pause before closing the program output window?
What is #pragma statements?
Explain why c is faster than c++?
What is the difference between near, far and huge pointers?
Write a program in c to replace any vowel in a string with z?
write a c program for swapping two strings using pointer