Posts by Roberto Kennedy • 45 points
3 posts
-
0
votes1
answer512
viewsQ: Sorting by name and number plate
I have this List simply chained and n know how to order it. I need to sort by name and number. #include <stdio.h> #include <stdlib.h> void BuscarMatricula(); void Inserir(); void…
-
2
votes1
answer3275
viewsQ: Check if the input is an integer
I need a function that reads a keyboard input and validates whether it is an integer (negative or positive). If it is, it should return the value. Otherwise, it should report that the entry is…
-
2
votes1
answer499
viewsQ: How do I resolve struct statement Warning?
I’ll send the code and the warnings that GCC is reporting. I must ignore warnings? The warnings are related as the passage of struct for the job Inserir();: #include <stdio.h> #include…