Click to See Complete Forum and Search --> : test


phr0663r
December 19th, 2006, 07:07 AM
this is a test


#include <iostream.h>

int main(){
cout >> "this is a test!!!";
return 0;
}
// i edited this bit! above is the original!
#include <iostream>
int main(void){
std::cout >> "this is a test!!";
return 0;
}

Hobson
December 19th, 2006, 08:16 AM
I like colored version more than original, it is using standard headers :)