User profile: Stewbond

User info
User name:Stewbond
History
Joined:
Number of posts:1668
Latest posts:

C++
You don't include other source files. Obviously this is more useful if you are working on a larger ...

Location in Memory
simply assign it a new address: [code]int main () { int a[] = {22 , 33 , 44 , 55 , 66 , 77 , 8...

Create Thread inside class/namespace(Ron Penton ThreadLib)
This may work if Foo::Bar is static.

writing from one file to another
Line 48 is inside of a while loop. That means that it will be created opened and then, destructed e...

columns and rows.
[code]for (int i = 0; i < 10; ++i) { for (int j = 0; j < 10; ++j) cout << 'X'; cout << endl;...