Answer Posted / nithya
%d print the value for example
int x=2;
printf("x=%d",x);
output:
x=2
%*d print the value for example
int x=2;
printf("x=%*d",x);
output:
x= 2
the output two space(x=2) next the value will be display
(x=6) the output 6 space next the value will be display
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is auto keyword in c?
What are the advantage of c language?
Can we access array using pointer in c language?
What are the 4 types of programming language?
What is use of null pointer in c?
What are global variables?
Can you think of a logic behind the game minesweeper.
Explain the binary height balanced tree?
Explain what are run-time errors?
What is dangling pointer in c?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is putchar() function?
What is queue in c?
in iso what are the common technological language?
Give differences between - new and malloc() , delete and free() ?