Answers for "how to write a list of structure in c"

C
0

how to write a list of structure in c

struct car
{
    char make[20];
    char model[30]; 
    int year;
};
Posted by: Guest on April-23-2022
0

how to write a list of structure in c

struct car arr_car[10];
Posted by: Guest on April-23-2022

Code answers related to "how to write a list of structure in c"

Code answers related to "C"

Browse Popular Code Answers by Language