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;
}
#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;
}