the format specified for hexa decimal is
a.%d
b.%o
c.%x
d.%u
Answer Posted / sri harsha
for hexa decimal %x,
for octal %o,
for decimal %d,
for unsigned int %d
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How does struct work in c?
What is volatile keyword in c?
Write a program to print fibonacci series using recursion?
Explain the use of 'auto' keyword in c programming?
What is structure packing in c?
What is maximum size of array in c?
What is the process to create increment and decrement stamen in c?
What is the use of pragma in embedded c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
How can this be legal c?
Write a factorial program using C.
When would you use a pointer to a function?
What is the general form of #line preprocessor?