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 28th, 2004 |
| Replies: 11 Views: 4,154 so
#include <iostream>
#include <cstdio>
is equivalent to just including iostream? i beg to differ. Ive included iostream before and still needed to include stdio for some functions,... |
Forum: C++ Dec 27th, 2004 |
| Replies: 11 Views: 4,154 it might have been confusion of namespaces? surely <stdio.h> should be <cstdio> for namespace std. and vega is right too, that macro needed to be global. only #ifdef / #ifndef / #endif can be in... |