#import <iostream>
using namespace std;
int main()
{
cout << 123 <<'\n';
cout <<"$100 recived \n";
cout <<"see you tomorrow \n";
return 0;
}
in this C++ program line, i dunno the function of the '<<' here; (i'm a newbie)
for example, an error occurs when i remove the '<<'in the first line
#import <iostream>
using namespace std;
int main()
{
**cout << 123 '\n';**
cout <<"$100 recived \n";
cout <<"see you tomorrow \n";
return 0;
}
i dunno why I need the '<<' please help me :(