please give me an example c program that uses an array of records

struct record
{
   char name[80];
   // blabla
};

int main()
{
   struct record[255]; // creates an array of 255 record structures

   // copy name to the first structure in the array
   strcpy(record[0].name,"John Smith");
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.