#include <iostream> using namespace std; #define myPI 3.1415 int main() { // your code goes here int myPI = 0; return 0; }
Standard input is empty
prog.cpp: In function 'int main()':
prog.cpp:4:14: error: expected unqualified-id before numeric constant
#define myPI 3.1415
^
prog.cpp:8:6: note: in expansion of macro 'myPI'
int myPI = 0;
^
Standard output is empty