Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

write a program for 7*8 = 56 ? without using * multiply operator ? output = 56

6 Answers   Xavient,


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


What is volatile keyword in c?

0 Answers  


How can a program be made to print the name of a source file where an error occurs?

0 Answers  


what is c

1 Answers  


Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???

2 Answers   TCS,


how to find the kth smallest element in the given list of array elemnts.

8 Answers   Silicon,


consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is

4 Answers   TCS,


How can I manipulate strings of multibyte characters?

0 Answers  


When was c language developed?

0 Answers  


Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?

2 Answers  


Find greatest of two numbers using macro

4 Answers   Bosch, Siemens,


Categories