Skip to main content

All Questions

1 vote
2 answers
69 views

C: problem with operator '->', compile but return error. There are main.c and .h, .c files

I'm new to the site. I use CodeBlocks. I am working with lists in C and I have to create a program with several functions but which has a header to declare them and another .c file to implement them, ...
Cb95's user avatar
  • 73
0 votes
2 answers
89 views

moving struct from end of one list to start of another list

I'm trying to write two functions: One that pushes out the last cell of a list, and another one to make that cell the first one in another list. Somehow, my functions don't work (and I've checked the ...
Daniel125's user avatar
-2 votes
3 answers
174 views

Using double pointers in functions [duplicate]

I am currently trying to learn how linked lists as a personal project. I understand the core concepts and I have been trying to implement it into c. My program looks like it should work, keep in mind ...
C. Centre's user avatar