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...


Why enum can not be used directly with printf function?

Answers were Sorted based on User's Feedback



Why enum can not be used directly with printf function?..

Answer / rashmi p

enum is not an basic data type like int,float and all it is
a user defined data type, and printf function works only
with basic data type, we 've overload printf function to
make it work for user defined data types :)

Is This Answer Correct ?    21 Yes 2 No

Why enum can not be used directly with printf function?..

Answer / sudip

main()
{
enum color{
red,black,green,yellow,blue,pink,white
};
printf("%d",green);
printf("%d",yellow);
}

this gives me output.... 23
we can use it....?/ Correct me if I am wrong...

Is This Answer Correct ?    8 Yes 0 No

Why enum can not be used directly with printf function?..

Answer / srinivas

it is DAta type name like int so it can not be in printf

Is This Answer Correct ?    5 Yes 3 No

Post New Answer

More Data Structures Interview Questions

How to copy an array into another array?

0 Answers  


What is time and space complexity of bubble sort?

0 Answers  


Write an algorithm to show various operations on ordered list and arrays

0 Answers  


What is variable size arrays?and why we use it?

0 Answers   MCN Solutions,


Define a linear data structure.

0 Answers  


Explain the implementation of an AVL tree and Binary tree.

0 Answers   Ittiam Systems,


How to get the index of an array element?

0 Answers  


Is there any difference between int[] a and int a[]?

0 Answers  


What is complete binary tree and almost complete binary tree?

0 Answers  


Is merge sort better than quick?

0 Answers  


Is a hashmap a dictionary?

0 Answers  


For searches. Which one is most preferred: array list or linked list?

0 Answers  


Categories