Search:

Type: Posts; User: dogger

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    920

    ohhh ok i get it now it was pretty weird...

    ohhh ok i get it now
    it was pretty weird there for a second
    thanks a lot helpers !!!
  2. Replies
    4
    Views
    920

    help please , a fgets question

    i have this function that i need to build


    int isIn(char *name1, char *name2)
    {
    char *bufferbig;
    fgets(bufferbig,256,name1);
    }
  3. Replies
    11
    Views
    1,618

    oh i c , thanks a lot it really cleared some...

    oh i c , thanks a lot
    it really cleared some issues for me
  4. Replies
    11
    Views
    1,618

    yea i forgot to say it was a square ok it works...

    yea i forgot to say it was a square
    ok it works now thanks a lot
    can you just explain a little about what you did there ?
    is it like an array of pointers ?
  5. Replies
    11
    Views
    1,618

    yea ok but my function signature is int...

    yea ok but my function signature is

    int checkMat(int**mat , int rows)

    so i can't do


    checkMat(arr)
  6. Replies
    11
    Views
    1,618

    ok i read it i understand why it doesn't work ,...

    ok i read it i understand why it doesn't work , so i tried to make a pointer to point to the 2d array like so:


    int arr[2][2]={{4,6},{3,6}};
    int **p ;
    **p[2]=&arr[0][0];

    i tried other...
  7. Replies
    11
    Views
    1,618

    so i have to send it a 2d array pointer ? i can't...

    so i have to send it a 2d array pointer ? i can't send the array like in regulars arrays ?
  8. Replies
    11
    Views
    1,618

    hello all quick pointers question

    i had to write this func. on an assignment



    int checkMat(int**mat , int rows)
    {
    int i,j;
    int sum=0; // will be the sum of the first - the sum of the second if sum=0 then they're equal...
Results 1 to 8 of 8