Forum: C++ Jan 8th, 2005 |
| Replies: 97 Views: 25,636 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: 21 Views: 6,636 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,775 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,662 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,... |