c++ print to standard error code example
Example: c++ print to standard error
#include
int main(){
std::cerr << "this is a message for stdandard error" << std::endl;
return 0;
}
#include
int main(){
std::cerr << "this is a message for stdandard error" << std::endl;
return 0;
}