Search:

Type: Posts; User: Mr.777

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    1,096

    Re: Question to do with methods.

    I'll recommend you to read this
  2. Replies
    3
    Views
    1,096

    Re: Question to do with methods.

    Function Definition: int x(int);
    Function Call from anywhere: x(5);
    Function Implementation:

    int x(int a)
    {
    return a;
    }
Results 1 to 2 of 2