Forum: C++ Oct 31st, 2008 |
| Replies: 3 Views: 432 I think you have not included iostream or have not written using namespace std; |
Forum: C++ Oct 31st, 2008 |
| Replies: 6 Views: 3,881 the psudeocode will be
datatype name [no of rows][no of cols];
e.g. int array[10][10]; |
Forum: C++ Oct 31st, 2008 |
| Replies: 6 Views: 555 You should make a structure containing the variables for holding one persons data, then use it just like any other "Node" in linked list. But you should first try urself. |