Posts by Mat.E • 3 points
2 posts
-
0
votes2
answers4985
viewsQ: How to read string with space in a repeat structure?
I have to make a program to read the name, the author and the price of an n quantity of books (from structures). I made a struct for the books that way : typedef struct{ char nome[100]; char…
-
0
votes1
answer136
viewsQ: How to pass this parameter to a void function?
Having two roles being the first : void print_bytes (const void * end_byte, int n){ int k; k = end_byte; converte_binario(k); } Already the binary convert is a little big so I’ll explain, basically…