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