Structure

  1. Write a note on Structure. (Google it)
  2. Write Diff between Array and Structure.
  3. Write Program to get diff between time of 2 Clocks.
    Hint:
    struct CLOCK
    {
    int hour;
    int minute;
    }
  4. Write Program to get diff between height of 2 Persons.
    Hint:
    struct HEIGHT
    {
    int feet;
    int inch;
    }
  5. 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;
    }
  6. Program for simple interest using pointer to structure.