fork download
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4. int main()
  5. {
  6. int a=167,b=218,c=452;
  7. int d=(sqrt(sqrt(pow((a/b),10))-(fabs(c))));
  8. int e=d%6;
  9. char string m='Привет';
  10. cout<<d<<endl<<e<<endl<<m<<endl;
  11. return 0;
  12. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:9:15: warning: character constant too long for its type
 char string m='Привет';
               ^
prog.cpp: In function 'int main()':
prog.cpp:9:13: error: expected initializer before 'm'
 char string m='Привет';
             ^
prog.cpp:10:25: error: 'm' was not declared in this scope
 cout<<d<<endl<<e<<endl<<m<<endl;
                         ^
stdout
Standard output is empty