Write Program to get diff between time of 2 Clocks.
Hint: struct CLOCK { int hour; int minute; }
Write Program to get diff between height of 2 Persons.
Hint: struct HEIGHT { int feet; int inch; }
Write Program for N Students using array of structure. Also print MAX 'total', Min 'Per'.
Hint: struct STUDENT { int roll; float CPP,Java,android; float total,Per; }
Program for simple interest using pointer to structure.