python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Bus error 10 for initialisation of my skip list
how can I find the bus error 10 for the initiation process of my skip list???
struct leapList *initSkipList(struct leapList *skipList[]) {
int i;
for (i=0;i<maximum_level;i++)...
JamesL_22
Votes: 0
Answers: 0
What happens to malloced data in a struct in C when it is assigned to another variable?
Let's say I have a structure named "example" which has a member named data which stores data allocated on the heap:
typedef struct _EXAMPLE
{
signed char *data;
size_t size;
} exampl...
William Ryman
Votes: 0
Answers: 3
C++/C Importing Third Party Library to CMake
Hi I was wondering if anyone here could help me identify what I'm doing wrong while trying to add a library to my CMake project:
So originally I built the library https://github.com/recp/cglm in the c...
bigMojito
Votes: 0
Answers: 1