Search:

Type: Posts; User: Optical_Stinger

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    1,405

    reply to pinko_liberal

    the function may be more efficiently coded, but if so why don't you post an alternative. My function works, if it is a few hundreds of a second slower so what. The Quality of a program is it's...
  2. Replies
    1
    Views
    1,092

    Complex Declaration

    I came across this declaration in some text about pointer's

    int *(*(*i)())[5];

    Do you know what it means?
    A prize for all correct answers(maybe)

    answer will be posted soon
  3. Replies
    5
    Views
    1,217

    the above loop expression should read ...

    the above loop expression should read

    while(*pnt){count++;}

    not

    while(pnt){count++;}

    you need to use the indirection operator otherwise you are using the address pointed to by pnt not...
  4. Replies
    6
    Views
    1,405

    The problem your having is trying to over...

    The problem your having is trying to over complicate your code, this is something everyone suffers from though i have written a program with a function to calculate the number of occurences


    /*...
Results 1 to 4 of 4