can i run simple c++ command line scripts on my iphone? [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I would like to run some math code that I have been working on for a while on my iPhone. I use nothing but cin, cout, and getline. I also use a fair bit of the stl.

You could use cloud9 the web based programming environment. It supports c++. All you need is a web browser.

Related

Is there a C++ formatter following Google coding style? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 days ago.
Improve this question
cpplint gives a long list of style issues, my code is thousand lines, it will take me forever to update the code to satisfy cpplint. Is there a C++ formatter tool which can automatically re-format the code, as close as possible to Google C++ coding style?

C++ LibVLC dos it work? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I would like to use LibVLC in C++, but looking in the documentation I saw that a version named LibVLCpp existed.
Only impossible to find it. Does LibVLC work in C++ ?
Does LibVLC work in C++ ?
Yes, you can use it like any other c-API in c++.

How to create Windows Service in C/C++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to create Windows Service (application running in background) using C/C++ language. How can I do this, can you give me a tutorial ?
Another platform independent way is to use boost::application
Example how to use can be found here.

libwebsockets vs. WebSockets++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm going to make a realtime multiplayer game using the WebSocket technology. However, I am unsure which server implementation I should use. I've found two mature (enough) libraries that suit my needs. libwebsockets and WebSockets++.
Did anyone try them out? Can someone point out the main differences between these two libraries?
You can have a look at QWebSockets, which is written in Qt and works both for clients and servers.

Distributed computing framework in c/c++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a way to make distributed computing over a network (lan). Is there any good framework or a library for this purpose in C/C++.
Take a look at MPI.
Yes. Have you looked at MPI via e.g. Open MPI ?