Interview Questions

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

C++ Interview Questions and Answers


(Continued from previous question...)

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

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

(Continued on next question...)

Other Interview Questions