Thread: HELP

Results 1 to 5 of 5
  1. #1
    familyguy2's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Behind you!
    Posts
    248
    Reputation
    10
    Thanks
    24
    My Mood
    Yeehaw

    HELP

    My console dont open when i teype this code in dev c++


    #include <iostream>
    using namespace std;

    int main()
    {
    cout << "Čiv čiv to sem (bil) živ. ";
    return 0;
    }
    I play dayz, send me pm if you whana some teame work.





  2. #2
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by familyguy2 View Post
    My console dont open when i teype this code in dev c++


    #include <iostream>
    using namespace std;

    int main()
    {
    cout << "Čiv čiv to sem (bil) živ. ";
    return 0;
    }
    Are you actually compiling your code and running it? It doesn't just magically run if you type into the editor Try adding

    Code:
    system("PAUSE");
    before your return statement.

    Code:
    #include <iostream>
    using namespace std;
    
    int main()
    {
        cout << "Čiv čiv to sem (bil) živ. ";
        system("PAUSE");
    
        return 0;
    }

    It may just be instantaneously closing after it prints to the console. Also, this belongs in the programming section.
    Last edited by Woodhouse; 03-18-2014 at 02:46 PM.

  3. The Following 2 Users Say Thank You to Woodhouse For This Useful Post:

    Ferris Bueller (03-18-2014),[MPGH]Mayion (03-18-2014)

  4. #3
    familyguy2's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Behind you!
    Posts
    248
    Reputation
    10
    Thanks
    24
    My Mood
    Yeehaw
    Nope,same.
    I play dayz, send me pm if you whana some teame work.





  5. #4
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by familyguy2 View Post
    Nope,same.
    I edited my post. Read again.

  6. #5
    familyguy2's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Behind you!
    Posts
    248
    Reputation
    10
    Thanks
    24
    My Mood
    Yeehaw
    Yea it worked.
    I play dayz, send me pm if you whana some teame work.





Similar Threads

  1. [Help Request] Combat arms Vid help
    By djw111 in forum Combat Arms Help
    Replies: 4
    Last Post: 12-24-2011, 05:06 PM
  2. [Help Request] AFK Bot [help]
    By fet in forum Combat Arms Help
    Replies: 7
    Last Post: 04-28-2011, 03:17 AM
  3. [Help Request] Injector Admin help
    By asdfgas in forum Combat Arms Help
    Replies: 4
    Last Post: 04-27-2011, 06:12 PM
  4. [Help Request] Ajuda / Help
    By - Battery' in forum Combat Arms BR Coding Help
    Replies: 3
    Last Post: 04-22-2011, 07:15 PM
  5. [Help Request] Help my!
    By Windowns7 in forum Combat Arms BR Coding Help
    Replies: 2
    Last Post: 04-18-2011, 01:41 PM