C++ help

Started by
11 comments, last by DevLiquidKnight 11 years, 1 month ago

He got it to compile so I'd assume he fixed that.

Advertisement
Has C::B improved lately? I tried it some years ago and was really disappointed with it.
void hurrrrrrrr() {__asm sub [ebp+4],5;}

There are ten kinds of people in this world: those who understand binary and those who don't.

Do not use:

char name[50];

char weapon[100];
char weapon_name[100];
Use std::string.

string name;
string weapon;
string weapon_name;


This topic is closed to new replies.

Advertisement