prog.cpp:5:11: error: ‘::main’ must return ‘int’
void main()
^
prog.cpp: In function ‘int main()’:
prog.cpp:14:11: error: ‘getch’ was not declared in this scope
getch();
^
prog.cpp: In function ‘int pal(int)’:
prog.cpp:23:20: error: ‘log10’ was not declared in this scope
index=log10(num);
^
prog.cpp:27:9: error: return-statement with no value, in function returning ‘int’ [-fpermissive]
return ;
^~~~~~