+ 1
I write it like this (cout <<"this is awesome "; but no output why that happen??
7 Respuestas
+ 7
Post your entire code if you may =^=
+ 2
If your program would compile, maybe you should flush the output adding "endl" at the end of the string in this way:
cout<<"this is awersome"<<endl;
+ 2
no ) I think so
+ 1
do
#include <iostream>
using namespace std;
int main()
{
cout << "moo";
return 0;
}
____________________
I know its basic but it is much simpler because its the first thing you learn
0
This might be helpful,
Using namespace std;
Or
Std::cout
Also, your spacing seems off..
0
Are you working in the app or on computer in IDE/Compiler? Also, full code would be helpful. :)
- 1
what you mean ?
in last line