0_0_29318960_2542.cpp:2:14: error: '_Bool' does not name a type
#define bool _Bool
^
0_0_29318960_2542.cpp:8:1: note: in expansion of macro 'bool'
bool rightmove(int index)
^
0_0_29318960_2542.cpp:2:14: error: '_Bool' does not name a type
#define bool _Bool
^
0_0_29318960_2542.cpp:18:1: note: in expansion of macro 'bool'
bool leftmove(int index)
^
0_0_29318960_2542.cpp: In function 'int main()':
0_0_29318960_2542.cpp:39:19: error: 'strlen' was not declared in this scope
len=strlen(value);
^
0_0_29318960_2542.cpp:49:24: error: 'leftmove' was not declared in this scope
else if( leftmove(i) ) ans+=50;
^
0_0_29318960_2542.cpp:52:25: error: 'rightmove' was not declared in this scope
else if( rightmove(i) ) ans+=50;
^
0_0_29318960_2542.cpp:56:19: error: 'leftmove' was not declared in this scope
if( leftmove(i) ) ans+=100;
^
0_0_29318960_2542.cpp:61:20: error: 'rightmove' was not declared in this scope
if( rightmove(i) ) ans+=100;
^
|