Search:

Type: Posts; User: shdwsclan

Search: Search took 0.01 seconds.

  1. Pointers as array, copying to memory locations help

    Well, basically the program should copy the ints a, b, c to destinations x, y, z.....

    Haven't done C in a while and trying to get back on my feet.......
    Pointers are getting somewhat...
  2. Replies
    4
    Views
    1,649

    Some of you know what buffer expliots are......

    Some of you know what buffer expliots are...
    well....gets is the buggy one that is unsafe....even the compiler tells you i think...
    and fgets...or something like that is a revised version...

    In...
  3. Replies
    3
    Views
    1,047

    Help with linked lists in C???

    Im having trouble writing a linked list that and a simple summation of the nodes....


    #include <stdio.h>
    typedef struct Node {
    int val;
    struct Node *next;
    } *list_pointer;
  4. Yes, not only that, I have a book and I do get...

    Yes, not only that, I have a book and I do get the gist of how they work and truth table, ive also updated my code with the isNonNegative function...
  5. C bitwise operator exercise - more like newb killer

    I am native to various languages but bitwise operators just kill me. I see how much I take object oriented languages for granted. I like all the other c derivitives but ANSI C is making me loose my...
Results 1 to 5 of 5