python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k 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
LinkedList That Accept Any Type Of Object At Same Time
Is it possible to implement a linkedlist that accept any type of objects at same time ?
for example : list.add(int) , list.add(float) , list.add(object1) , list.add(object2)
as you can see i added dif...
Islah Amine
Votes: 0
Answers: 1
GLut in C - Collision isn't working all the time
I'm currently working on a side scroller, my player can shoot, as do the enemies. If I hit an enemy,it should disappear. Unfortunately, it doesn't work all the time. Sometime it does, sometime not. So...
Cariamole
Votes: 0
Answers: 1
How do i make function that takes a pointer to a list of integers and returns 1 and if all elements in the list are odd, and 0
#include <stdio.h>
#include <stdlib.h>
typedef struct int_node IntNode;
struct int_node {
int val;
IntNode* next;
};
typedef struct int_list IntList;
struct int_list {
IntNod...
mjuny6y5
Votes: 0
Answers: 1