Results 1 to 3 of 3

Thread: what good is a console program anyway??

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2001
    Posts
    82

    Talking what good is a console program anyway??

    I have been thinking about a program for a while now and think that C++ may be the best choice to create this since there will be alot of user input.

    Basicly the progam ask a set of questions then out puts what the user wants. I could do this in visual basic and probably will as a "prototype" but that could end up being a lot of windows.

    But who would want a console program? Sure I would know what to do with it since I created it, but should I distribute it, would people want it? I mean there would be no buttons or windows or anything fancy like that.

    Console programs, are they any good? Can or have you distributed a console program your self?
    If you think I am wierd, then thats YOUR problem!

    -----------------------------------

    I keep snakes and lizards, wanna know more? PM me

  2. #2
    Frenzied Member
    Join Date
    Jul 1999
    Posts
    1,800
    you can if you want, console programs help people get the basics down, after that a lot of people go to windows programming. C++ is good for simple programs or function creation (in my opinion anyway)

  3. #3
    PowerPoster
    Join Date
    Aug 2001
    Location
    new jersey
    Posts
    2,904
    console programs are very useful for quick utilities done by experience C programmers who have a built up library of functions, because they are very fast when running and very quick to develop. I have dozens that I've developed over the years and I use serveral of them every day.

    If the fundamental thrust of a program is heavy lifting (sorting tens of millions of records in a flat file, for example) then console app are particularly good because they're fast.

    If the fundamental thrust of an app is the user inteface, the console apps suck.

    In one sense, a console app is nothting but a DOS program, and they were distributed successfully for a lot of years.

    These days, if you're going to distruibute something to relatively computer-iliterate folks, you're better off with a windows app, whether generated by VB or whatever.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width