Forum: C Aug 28th, 2004 |
| Replies: 4 Views: 12,123 thanks so much. i understand all that have been suggested.
how about doing it in c++ syntax?
i am rather new to c++, and thus cant really convert the syntax in c to c++.
hope that someone can... |
Forum: C Aug 21st, 2004 |
| Replies: 4 Views: 12,123 anyone remembers the syntax of reading a file into C and subsequently printing it out?
for eg. i have the file 'matrix.txt'
the contents inside the file is as follows:
<matrix>
rows = 2; ... |
Forum: C++ Aug 21st, 2004 |
| Replies: 1 Views: 2,630 below is one of my function call of a program done in C:
/* asks if the players would like to have another game of Tic Tac Toe */
void prompt_user(int game[][SIZE])
{
char reply;
... |