Posts by Wesley Alves Cardoso • 9 points
2 posts
-
0
votes1
answer1153
viewsQ: Element removal at the beginning of C chained list
In this C program, I’m trying to create a function that removes the first element of a chained dynamic list... #include <stdio.h> #include <stdlib.h> struct no { int dado; struct no…
-
0
votes2
answers2255
viewsQ: How to get the rest of a float number in C?
This is the question of the URI I thought of this idea more when I’m going to take the rest of float numbers I can’t... #include <stdio.h> int main(int dinheiro) { int res, res2; Here I have…