Answers

Question and Answer:

  Home  OS Data Structures

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

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 :)

 223 views

More Questions for you: