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
what does static variable mean?
What is the purpose of sprintf() function?
What is the sizeof () a pointer?
Is there any demerits of using pointer?
can anyone suggest some site name..where i can get some good data structure puzzles???
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Explain logical errors? Compare with syntax errors.
What is the collection of communication lines and routers called?
How do you define a string?
In C, What is the #line used for?
What is a #include preprocessor?
What is memory leak in c?
What is a file descriptor in c?