Thread: Dev C++ > Vs C++ 08

  1. #31
    Registered User
    Join Date
    Nov 2006
    Posts
    58
    Ok i agree, but does this mean i should just keep playing with flat c++ in console form? Then when i apply to jobs, learn there enviroment (microsoft, unix etc) when i arrive?

    I agree alot of time is waisted trying to learn silly compiler quibs, and never perfecting the language.

    Look forward to your advice.

  2. #32
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Console? Who said C++ is limited to console?
    All those fancy apps you see out there, or hey, games - what are they written in? C++ of course!
    C++ can do all that C# and .NET does. It's not limited to console. It's just more difficult to write GUI in C++.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

  3. #33
    Registered User
    Join Date
    Nov 2006
    Posts
    58
    Ok sounds good, but my brain is limited to embedded, .net and console at minute. What are games etc written in? Dev-C++ and then executed by and exe. I dont really understand how they are developed. I only really understand micrsoft - sorry to be so thick.

  4. #34
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Applications are applications and games are applications - they're just a file with a bunch of resources, data and executable code. They're no different from anything else.
    Dev-C++ is an IDE. It uses a compiler. A compiler turns your code into an application. It doesn't matter what IDE or compiler you use - in the end, you get an application.
    There are two types of applications mostly, though: CLI and GUI (for a lack of a better name).
    The only difference between them is that CLI has a dos window and the other does not.
    Games simply use the second type. They use windows (not the OS) to draw graphics upon.
    Last edited by Elysia; 12-10-2007 at 03:13 PM.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

  5. #35
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    In a thread where the Common Language Infrastructure has been referred to as CLI, it might be wise to point out that in this case, CLI stands for Command Line Interface.

    They use windows (not the OS) to draw graphics upon.
    Well ... what do you think draws the windows? The OS does. Besides, games that use DirectX or OpenGL (i.e. all except the really basic ones) only use windows because DirectX needs them as identification hooks - after that, all the drawing is done through the DirectX interface.
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. small -> big -> bigger -> bigger than bigger -> ?
    By happyclown in forum A Brief History of Cprogramming.com
    Replies: 9
    Last Post: 03-11-2009, 12:12 PM
  2. > > > Urgent Help < < <
    By CodeCypher in forum C Programming
    Replies: 2
    Last Post: 01-31-2006, 02:06 PM
  3. New to Dev C++/<windows.h>...
    By Cilius in forum C++ Programming
    Replies: 3
    Last Post: 02-23-2005, 01:05 AM
  4. Glut and Dev C++, Programs not Quitting?
    By Zeusbwr in forum Game Programming
    Replies: 13
    Last Post: 11-29-2004, 08:43 PM