How to print %d in output

Answer Posted / murugesan kr

printf("\%d");

Is This Answer Correct ?    1 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is New modifiers?

665


What is return type in c?

635


any "C" function by default returns an a) int value b) float value c) char value d) a & b

663


What is string in c language?

621


For what purpose null pointer used?

606






What is meant by operator precedence?

670


why do some people write if(0 == x) instead of if(x == 0)?

653


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

685


Write a program to check armstrong number in c?

633


What is the difference between array and linked list in c?

596


Are global variables static in c?

674


What is a shell structure examples?

586


Why main is used in c?

584


What is the use of bitwise operator?

684


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

1732