Search:

Type: Posts; User: Caleb Duncan

Search: Search took 0.00 seconds.

  1. Not understanding where this value is coming from... Help?

    int main(){
    int *map[12][12][5], monster = 0, mnstMdfy = 0,mnstDths[26];

    mnstDths[6] = 0;

    map[1][0][0] = (int *)malloc(sizeof(int));

    map[1][0][0] = 71;

    ...
  2. Replies
    1
    Views
    1,040

    Why is this an infinite loop?

    struct node{
    struct node* back;
    int data;
    struct node* next;
    };
    struct node *head;
    struct node *tail;
    struct node *temp;

    void main{
  3. Replies
    1
    Views
    1,184

    Structure/Linked list pointer Crash

    After creating a structure and trying to assign the address of a node to the linked list, the program builds correctly, however crashes upon running. Any help? Thanks.



    struct student{
    ...
Results 1 to 3 of 3