Please tell me how we use the array of structure and pointer?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ali ujk
    New Member
    • Jul 2016
    • 1

    Please tell me how we use the array of structure and pointer?

    #include<iostre am.h>
    Using namespace STD;
    Struct students
    {
    Char name[50];
    Int age;
    };
    Main();
    {
    Students s[10];
    Now what we do how we use pointer



    }
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Read this: https://bytes.com/topic/c/insights/7...rrays-revealed

    Comment

    • donbock
      Recognized Expert Top Contributor
      • Mar 2008
      • 2427

      #3
      What do you want to do with this array of structures?

      Comment

      Working...