Give me sweet, sweet pointers.
Thing is, being a c++ programmer myself, i agree that java, python, c# (all the memory managed languages) are good for beginners, but then again, if you want to do games, having built in memory garbage disposal and managed systems brings a whole overhead of stuff you dun need.
which is why u need c/c++ stuff.
but tbh real programmers input all their binary digets BY HAND!
bonus round:
void main(void){
OverflowThisShit(1);
}
void OverflowThisShit(int i){
double* lawdy = new double;
lawdy = i;
i = i+i;
OverflowThisShit(i);
}