Posts by João Gabriel • 45 points
6 posts
-
-1
votes1
answer50
viewsQ: Privileges of users(2)
Well, I’m on a college exercise that’s creating a blog. Can contain 4 different users: User(only reads post and comments) Redator(Creates posts and manages comments) ADM(manages all posts and…
-
0
votes1
answer156
viewsQ: User privileges
Well, I’m on a college exercise that’s creating a blog. Can contain 4 different users: User(only reads post and comments) Redator(Creates posts and manages comments) ADM(manages all posts and…
-
0
votes2
answers66
viewsQ: List removal
I have a program that registers trucks, cargo and cities through a list. I tried to remove the truck list, but when I removed it, the insertion still continues, as if I hadn’t removed anything. What…
-
3
votes2
answers331
viewsQ: Save list in file
I have an exercise that I register trucks, cities, loads through a list, but I’m not able to save in a file (it’s the last function) when I select the save option(#7), it closes the program. What am…
-
-1
votes1
answer58
viewsQ: Problem on the list
The list should insert the fields of struct trucks and then print them.But when I ask to print, only the first insertion appears. #include <stdio.h> #include <stdlib.h> #include…
-
1
votes1
answer790
viewsQ: Error: incompatible types when assigning to type 'char[200]' from > type 'char'
When I try to insert the char motorista an error appears: [Error] incompatible types when assigning to type 'char[200]' from type 'char' Code: #include <stdio.h> #include <stdlib.h>…