Posts by joao • 11 points
1 post
-
0
votes1
answer25
viewsQ: I wanted to know why not read the functions on the screen
#include <stdio.h> typedef struct { char titulo; char autor; float preco; } livro ; livro definelivro(char titulo, char autor, float preco){ livro l; l.titulo = titulo; l.autor = autor;…