the format specified for hexa decimal is
a.%d
b.%o
c.%x
d.%u

Answers were Sorted based on User's Feedback



the format specified for hexa decimal is a.%d b.%o c.%x d.%u ..

Answer / deepa

it is x for hexadecimal

Is This Answer Correct ?    8 Yes 0 No

the format specified for hexa decimal is a.%d b.%o c.%x d.%u ..

Answer / mannucse

c

Is This Answer Correct ?    7 Yes 1 No

the format specified for hexa decimal is a.%d b.%o c.%x d.%u ..

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

the format specified for hexa decimal is a.%d b.%o c.%x d.%u ..

Answer / mytri

%x

Is This Answer Correct ?    2 Yes 0 No

the format specified for hexa decimal is a.%d b.%o c.%x d.%u ..

Answer / mahmoud

c.%x

Is This Answer Correct ?    2 Yes 0 No

the format specified for hexa decimal is a.%d b.%o c.%x d.%u ..

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

the format specified for hexa decimal is a.%d b.%o c.%x d.%u ..

Answer / shital

i think %x is the right answer

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is modeling?

0 Answers  


Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"

1 Answers  


related to rdbms query .

2 Answers  


#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }

3 Answers   IBM,


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

0 Answers   Aspire, Infogain,






? ???Mirror Mirror on the wall????????

1 Answers   channel V, DPI,


Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).

0 Answers  


wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain

3 Answers   TCS,


What are different types of pointers?

0 Answers  


Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }

4 Answers   Subex,


i want to have a program to read a string and print the frequency of each character and it should work in turbo c

3 Answers   Persistent, Wipro,


I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....

2 Answers  


Categories