// This program outputs message the"hello,world" to the monitor
#include<iostream>
int main() //C++ Programs start by executing the function main
{
cout<<"hello,world!\n"; //output"hello,world"
return 0;
}
#include<iostream>
int main() //C++ Programs start by executing the function main
{
cout<<"hello,world!\n"; //output"hello,world"
return 0;
}
