Answers for "structs i c"

C
0

struct in c

// dichiarazione della struct
struct libro
{
  char titolo[100];
  char autore[50];
  int anno_pubblicazione;
  float prezzo;
};

//dichiarazione dell'istanza biblio
struct libro biblio;
Posted by: Guest on April-19-2021

Code answers related to "C"

Browse Popular Code Answers by Language