fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int a=3;
  7. float b=1.2;
  8. char anne ='a';
  9. cout <<a<<endl;
  10. cout <<b<<end1;
  11. cout <<anne;
  12. return 0;
  13. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:10:12: error: ‘end1’ was not declared in this scope
  cout <<b<<end1;
            ^~~~
prog.cpp:10:12: note: suggested alternative: ‘enum’
  cout <<b<<end1;
            ^~~~
            enum
stdout
Standard output is empty