Cria struct Musica

This commit is contained in:
axell-brendow 2021-03-07 14:42:34 -03:00
parent 425e685919
commit 54bda32f96
1 changed files with 21 additions and 0 deletions

21
tps/fonte/musica.cpp Normal file
View File

@ -0,0 +1,21 @@
typedef struct {
char id[30];
char name[200];
char key[15];
char artists[40][100];
int num_artists;
char release_date[12];
double acousticness;
double danceability;
double energy;
int duration_ms;
double instrumentalness;
double valence;
int popularity;
float tempo;
double liveness;
double loudness;
double speechiness;
int year;
} Musica;