Thread: Post your games

  1. #1
    Registered User
    Join Date
    Jan 2002
    Posts
    69

    Post your games

    Could you put some games plz i'd like to see them.

  2. #2
    Unregistered
    Guest
    Code:
    #include <stdio.h>
    #include <stdlib.h>
    
    int main(void)
    {
      int x = 10;
      int guess;
     
      cout<<"Guess the number"<<endl;
      cin>>guess;
      
      if(guess == x)
        cout<<"You win!"<<endl;
      else
        cout<<"You're a loser!"<<endl;
    
      return EXIT_SUCCESS;
    }
    Just as a side note, most games will be way too big to post. Better to ask them to email you the source. ;p

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Resources for professional games
    By EVOEx in forum Game Programming
    Replies: 8
    Last Post: 06-17-2009, 02:42 PM
  2. need help with HTTP POST
    By Anddos in forum Networking/Device Communication
    Replies: 5
    Last Post: 03-22-2009, 08:41 AM
  3. Unknown memory leak with linked lists...
    By RaDeuX in forum C Programming
    Replies: 6
    Last Post: 12-07-2008, 04:09 AM
  4. Auto POST
    By vasanth in forum A Brief History of Cprogramming.com
    Replies: 10
    Last Post: 06-07-2003, 10:42 AM