Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

compiler?


ghost's Avatar
0 0

hey, i was looking for a free c++ complier i could download? i just got one called bloodshed, is that a half decent one? if not any ideas for one?

thanks


ghost's Avatar
0 0

bloodshed is perfect, its what i use


ghost's Avatar
0 0

yeah but hwne i use blood shed my "cout" s dont work. did any one else have this problem or know of a more compilers?


ghost's Avatar
0 0

it could be your code…

post it below:


SySTeM's Avatar
-=[TheOutlaw]=-
20 0

Agreed with cubeman, it's not the compiler, it's your code, also Bloodshed Dev-Cpp is the best I've ever used, so stick with it ;)


ghost's Avatar
0 0

i'm not truely sure how advanced you are at programming, but make sure that you include the proper libraries. for cout and cin, infact a bunch of c++ reservered words, you need the iostream library, make sure this is at the top of your code

#include <iostream>

here is a quick template that you can use if you'd like, its what i use everytime i write code.

/*

Name:

Course: CMPSC 101 Sect X

Assignment:

File Name:

This program …

Input variables:

Output variables:

Processing variables:

Algorithm:

*/

#include <iostream>

using namespace std;

int main()

{

return 0;

}

Hope i helped!