User profile: john2

User info
User name:john2
Name:andre s
Location:emmen, netherlands
Bio:amature c++ programmer. Learning opengl, linux programming, scripting.
Statistical data
Birthdate:Dec 8, 1981
Gender:Male
Occupation:Other
Skills:C
PHP
C++
Java
Python
History
Joined:
Number of posts:10
Latest posts:

School assignment
<< is a bitwise operator. It shifts the bit in a byte to the left, compared to >> which shifts them...

School assignment
[code]p1 = p1 | (1<<bit2); //set bit2 of p1, p1 = p1 & ~(1<<bit7); //reset bit7 of p1.[...

Program builds but doesnt print anything
You end up in an infinite loop. Cause you have a do-while loop that doesnt stop while there is a zer...

beginner exercises addendum
original post: http://cplusplus.com/forum/articles/12974/ i got some answers: http://www.send...

what are the ways to test for memory leaks?
let the program run a 1000 times or even more, by using a while loop. This way, if there is a memory...