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
while initialization of array why we use a[][2] why not a[2][]...?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Why can't I perform arithmetic on a void* pointer?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is the use of volatile?
What are 'near' and 'far' pointers?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Explain the binary height balanced tree?
What is scope of variable in c?
write a progrmm in c language take user interface generate table using for loop?
What does void main return?
How many levels of pointers can you have?
What is nested structure with example?
Explain what is #line used for?
Is fortran still used in 2018?