Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~262 People Reached
Favorite Tags
c x 2
Member Avatar for rknight

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 furniture need to be renewed, repaired, cleaned, and what its current value is, etc. He …

Member Avatar for DenisOxon
0
84
Member Avatar for rknight

#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) { case 8: // Backspace if (i > 0) { i--; *str--; std::cout << "\b \b"; } else putch('\a'); break; case 13: // Enter …

Member Avatar for rknight
0
178