Can I Write iOS/Android Apps with C++?

I've finished a library of functions for calculating sunblock data, in C++. Is it possible to use my C++ library for iOS or Android apps?
Yes.
closed account (z05DSL3A)
Cross-platform mobile development with C++
https://docs.microsoft.com/en-us/cpp/cross-platform/visual-cpp-for-cross-platform-mobile-development?view=msvc-160
Yes, although since running apps from the command line is not for everyone, you should also use some kind of GUI or TUI with it.

For example:
Ncurses (Mac)
PDcurses (Windows)
WinAPI (Windows), uses <windows.h>
OpenGL
SFML
DirectX (Windows)
Allegro
SDL
MySQL

Some of those may not be what you want, but at least one or two of them should work for you!
Topic archived. No new replies allowed.