Search:

Type: Posts; User: pyroknife

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    936

    On a side note, people have been telling me that...

    On a side note, people have been telling me that pointers is the most difficult part of C to understand. Is that true for most people?
  2. Replies
    7
    Views
    936

    Thank you guys. Oh and I think I get it. So...

    Thank you guys.

    Oh and I think I get it. So basically list_pointer!=(struct entry *) 0
    is checking to see if list_pointer is actually pointing to something. Initially it is pointing to n1 which...
  3. Replies
    7
    Views
    936

    Pointers - need help understanding code

    // Program to traverse a linked list#include <stdio.h>
    int main (void)
    {
    struct entry
    {
    int value;
    struct entry *next;
    };
    struct entry n1, n2, n3;
    struct entry *list_pointer = &n1;
Results 1 to 3 of 3