Posts by vilmar • 48 points
2 posts
-
1
votes3
answers315
viewsA: How to access a pointer within a structure?
I gave a simplified to be clearer, I created a variable to receive the position value #include "stdio.h" int main(void) { typedef struct char_vector{ char *c_parte_real[2], *c_parte_imag[2];…
-
2
votes1
answer62
viewsQ: Error removing element from a chained list in c
The function retiraLifo is not working and there is some syntax error, but I did not find it. This function is to remove element from the list. A insereLifo is working. The following error occurs:…