5 Posted Topics
[code] #include <iostream> using std :: cin; using std :: cout; using std :: endl; #include <iomanip> using std :: setw; const int rows = 3; const int column = 3; void PrintTicTacToe( char [][3] ); //The function prototpyes for this program void p1( char [][3]); void p2( char [][3]); … | |
what is the different about C++ n C.. i have a program below which my friends say that it is on C.. how do i change to C++.. [code] #include <stdio.h> #include <stdlib.h> char matrix[3][3]; /* the tic tac toe matrix */ char check(void); void init_matrix(void); void get_player_move(void); void get_computer_move(void); … | |
hello my name is Isacc. im from a far far away asian country which call Malaysia.. Im a newbie in C++ currently a high school student.. im learning c++ by myself n thru book.. so anyone can just help me or if something i can help i will do all … | |
What is a two-dimensional char array with 3 rows and 3 columns. Can give me an example of a program. Thanks | |
Write a program that simulates a lottery. The program should have an array of five integers named lottery, and should generate a random number in the range of 0 through 9 for each element in the array. The user should enter five digits which should be stored in an integer … |
The End.