Search:

Type: Posts; User: Alex1357

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    4,899

    Gents great tips , this was my very first post ...

    Gents great tips , this was my very first post and thanks for such a warm welcomeness
    I thought by allocating memory to edges and using a pointer to page in my edge struct there is no need to...
  2. Replies
    7
    Views
    4,899

    by doing this i still get the following compiler...

    by doing this i still get the following compiler error
    <code> warning: format '%9s' expects type 'char *', but argument 2 has type 'char (*)[10]' </code>
    and scanf still do not read the input
  3. Replies
    7
    Views
    4,899

    pointer, struct, scanf

    I have two structs as follow :


    struct page {
    //the name of the page can not be more than 9
    char name[10];
    };
    struct edge {
    struct page *page_start ;
    struct page *page_end ;
Results 1 to 3 of 3