C++ Programming Question:
Download Questions PDF

Write a Struct Time where integer m, h, s are its members

Answer:

struct Time
{
int m;
int h;
int s;
};

Download C++ Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is pure virtual function?How do you traverse a Btree in Backward in-order?