[prev] 27 [next]

Exercise 4: Reading in structs

Write a MIPS program that reads in information about a person and stores it in the following data structure:

typedef struct _Person {
   int  id_no;
   char family[15];
   char given[15];
} Person;