Forum: C Mar 16th, 2005 |
| Replies: 4 Views: 3,817 Well looping would be a simple way to draw it! Does this have to be a console app? Many Win32 Functions are available for arranging text or characters at co-ordinates on a window.... |
Forum: C++ Jan 8th, 2005 |
| Replies: 97 Views: 25,440 No offense, but me not finding java anywhere as useful as C++ has NOTHING to do with my programming ability. Maybe I have phrased things wrong but java does exist and is popular but I am happy to say... |
Forum: C++ Jan 4th, 2005 |
| Replies: 19 Views: 6,433 pointers are c++ most useful things and is what sets it aside from other languages. Just to name a few uses:
Dynamic arrays
Linked lists
Memory management (eg. passing pointers rather than... |
Forum: C++ Dec 26th, 2004 |
| Replies: 2 Views: 6,625 The RLE (Run length encoding) compression method compresses a file by writing repeated data as a byte containing the length, then a byte of the data itself. The 'real' RLE method involves writing... |
Forum: C++ Dec 17th, 2004 |
| Replies: 7 Views: 4,572 an array is essentially a variable which can store a number of values, all stored one after another in memory and all having a certain index;
eg
int numbers[10]; // array of 10 integers,... |