Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Could someone with an iOS4 device try this

  • 28-09-2010 3:53pm
    #1
    Closed Accounts Posts: 3,265 ✭✭✭


    Go to www.codepad.org on your ios4 device

    copy and paste this into the box
    #include <iostream>
    using namespace std;
    int main()
    {
    cout << "Hello World!" << endl;
    }

    select c++ button and then press submit.


    I'm just curious if there is an easy way of compiling c++ code on an ios4 device. I found a tutorial for iphone 3g where the phone itself could actually compile c++ instead of getting a website to do it but I don't think the libraries have been updated to ios4.


Comments

  • Moderators, Society & Culture Moderators Posts: 25,558 Mod ✭✭✭✭Dades


    This is what ya get. :)

    photo.png


  • Closed Accounts Posts: 3,265 ✭✭✭SugarHigh


    Thanks that means it works.:)


  • Registered Users, Registered Users 2 Posts: 1,170 ✭✭✭deep1


    SugarHigh wrote: »
    Thanks that means it works.:)

    You can also try Code2go app, that gives you to compile app in lots of other language on the go.
    Check the screenshots.


  • Registered Users, Registered Users 2 Posts: 39,900 ✭✭✭✭Mellor


    I don't understand a whole lot about C++, but what did the code world site do with the code?


  • Closed Accounts Posts: 3,265 ✭✭✭SugarHigh


    deep1 wrote: »
    You can also try Code2go app, that gives you to compile app in lots of other language on the go.
    Check the screenshots.
    Thanks I never heard of that. Does it actually compile the code on the iPad or does it send it to a server?



    Mellor wrote: »
    I don't understand a whole lot about C++, but what did the code world site do with the code?
    www.codepad.org just compiles the code and prints the output. The compiling is done by their server and not by your computer. It's handy in cases like this and if for example you wanted to compile java code but were on a computer without the java library.

    It's not ideal but in the odd situation it's handy.


  • Advertisement
Advertisement