Hi, I am using c4droid android app to compile.
But, when I use void main() it shows me an error
"main() must return int"
Please help me out.
As Android rus on linux kernal I have asked this question in this forum.
Instead of using void main() use int main() and in the end of your code add return 0; statement... void main() just works with old compilers and not the new ones