Search:

Type: Posts; User: muggly

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    2,484

    Yeah thank you so much guys, seriously :) ...

    Yeah thank you so much guys, seriously :)

    Although i found out a new way to do what i wanted i really learned a lot and it enriched my knowledge of C, T H A N K - Y O U :)))))

    PS: will...
  2. Replies
    8
    Views
    2,484

    Well i never thought about it given what i know...

    Well i never thought about it given what i know about pointers is extremely limited. So if i put a pointer on VECT i can access it and wherever i am in the child i can for example take the...
  3. Replies
    8
    Views
    2,484

    int shmid = shmget (SHMKEY, 128, 0777|IPC_CREAT);...

    int shmid = shmget (SHMKEY, 128, 0777|IPC_CREAT);
    char *addr = (char *)shmat (shmid, 0, 0);
    ptr = (int *) addr;




    Hey there,

    Thanks for taking the time :)
  4. Replies
    8
    Views
    2,484

    Structure array inside memory pointer

    typedef struct airplane{

    int number;
    char origin[10];

    }TAIRPLANE;

    typedef TAIRPLANE VECT[10];
Results 1 to 4 of 4