the format specified for hexa decimal is
a.%d
b.%o
c.%x
d.%u
Answers were Sorted based on User's Feedback
Answer / sri harsha
for hexa decimal %x,
for octal %o,
for decimal %d,
for unsigned int %d
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / manishsoni
i want to add something this :
hexadcimal mean 0-9 and a-f or A-F;
for the format spcifiere for 0-9 and a-f is %x
and the format spcifiere for 0-9 and A-F is %X
Manish soni MCA Ist sem rawatsar.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is it acceptable to declare/define a variable in a c header?
Is c a great language, or what?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Write the syntax and purpose of a switch statement in C.
how to print this sereis 2 4 3 6 5..........?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
What is the modulus operator?
Why is a semicolon (;) put at the end of every program statement?
When should the volatile modifier be used?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Is c object oriented?
Can you write a programmer for FACTORIAL using recursion?