Forum: C++ Aug 18th, 2004 |
| Replies: 8 Views: 6,199 Mabye you should post the error too, easier to find the error then than going through the entire code. |
Forum: C Aug 14th, 2004 |
| Replies: 34 Views: 8,001 It`s simple :)
int i;
i++; //Postfix
++i; //Prefix |
Forum: C++ Aug 3rd, 2004 |
| Replies: 3 Views: 1,988 I`ll try.
std is a namespace, and std::cout, refers to the object in std called cout.
So you can define an object called cout, without breaking the one definition rule. For example: In a large... |