Answers for "stderr in c++"

C++
0

c++ print to standard error

#include <iostream>

int main(){
	std::cerr << "this is a message for stdandard error" << std::endl;
  	return 0;
}
Posted by: Guest on September-16-2020

Browse Popular Code Answers by Language