User: Justin33

  • Public profile

User profile: Justin33

User info
User name:Justin33
History
Joined:
Number of posts:8
Latest posts:

Printing 2D Array Using Pointers
This line may also need changing. [code]case '1': displayExpenses(*expenses, week); [/code] Try : [...

Printing 2D Array Using Pointers
[code] cout << *(arr + i*7+j); [/code]

Printing 2D Array Using Pointers
[code] cout << (*(arr + i)+j); [/code] should be changed to [code] cout << (*(arr + i*7)+j); [/cod...

PLEASE HELP!!!
That is why I calculate x[sup]n[/sup] / n! with (x/1)(x/2)...(x/n).

Determining the winner of rock paper scissors?
The error is at line number 16-18. It should be: [code] playerOne= toupper(playerOne); ...

This user does not accept Private Messages