run c++ program on android phone

hi there, i just make a simple c++ program... is that possible to run my .exe c++ program on android phone?
if yes, how?
Last edited on
Visual Studio 2015 lets you write C++ code that will run on Windows, Android, iOS, etc., so I recommend installing it and trying it out.

Alternatively you could use the Android NDK yourself to do the same thing but with more research required.

You should be aware that Android runs on Java, although it does support native C/C++ components via the aforementioned NDK, which is what Visual Studio 2015 does for you.
Last edited on
thankyou Lb it helps a lot
Topic archived. No new replies allowed.