I want a make a user-defined console in c++ which can accept user input and display something . I want to customize the console window size , test color , window header ,etc .I want to display a prompt say RAHUL>> . Beside the prompt the user should be able to type some command which I should read in program and display the output. Plzz help me how to achieve this .
@ProgrammingBall,
That's not what OP asked for. What OP wants to write is a terminal emulator, like xterm, gnome-terminal, mintty, konsole, or windows' cmd.
Terminal emulators are usually not one program (with the exception, AFAIK, of cmd). For example, gnome-terminal loads a specified shell that knows how to communicate with an xterm (gnome-terminal actually emulates xterm, and xterm emulates a real terminal). It is the shell which communicates with the user, through the terminal emulator.
Learn to use a graphics library. Be warned that this will not be an easy task.
smart brain? I don't think he insulted you, although it is hard to believe that you can program C++ with that many spelling mistakes :P haha
OP, I'd say just using the standard windows command prompt would be best and just create your own keywords to use once the user runs your .exe. A lot less work, and basically the same results!