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


Please Help Members By Posting Answers For Below Questions

5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.

1857


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.

1823


Can you please explain the difference between strcpy() and memcpy() function?

832


What is the difference between void main and main in c?

888


Do you know the difference between exit() and _exit() function in c?

825


Explain how can type-insensitive macros be created?

795


What are the properties of union in c?

830


What is use of null pointer in c?

766


how can use subset in c program and give more example

1707


How can I make it pause before closing the program output window?

824


What is #pragma statements?

873


Explain why c is faster than c++?

830


What is the difference between near, far and huge pointers?

840


Write a program in c to replace any vowel in a string with z?

910


write a c program for swapping two strings using pointer

2353