Forum: Computer Science Jun 23rd, 2007 |
| Replies: 1 Views: 843 I'm currently in the process of writing a business proposal for a polytechnic. The guy we spoke with told us that he would like an asset management system that would tell him when things like... |
Forum: C Oct 7th, 2003 |
| Replies: 7 Views: 8,314 Thank you everyone for your help. By the sounds of things, dynamic memory allocation sounds like the best choice. I think one of the main things I wanted to know was if it was possible to find out... |
Forum: C Sep 12th, 2003 |
| Replies: 7 Views: 8,314 #include <iostream>
#include <conio.h>
void input(char *str) {
bool quit = 0;
unsigned char key;
for(int i = 0;quit != 1;) {
key = getch();
switch(key) {
... |