Posts by User • 1 point
3 posts
-
0
votes0
answers605
viewsQ: Runtime error on URI Judge Online?
I am unable to find out the Runtime error of this program. The question link: https://www.urionlinejudge.com.br/judge/pt/problems/view/1245 #include <stdio.h> int main() { int…
-
0
votes1
answer157
viewsQ: Chained list in C-add!
I am in doubt in an exercise and if anyone could help me would be very good! Thanks from now! #include <stdio.h> #include <stdlib.h> struct Numeros { int numero; struct Numeros *next; };…
-
0
votes1
answer321
viewsQ: Doubt in a program in C!!! Simply chained list!
I was trying to make a chained list, but I can’t get her to insert it or print it. If anyone can bring a light to my program I thank you. #include <stdio.h> #include <stdlib.h> typedef…