answersLogoWhite

0

What you meant to ask is:

What is mean by console application in Windows programming?

Answer: a program that doesn't open a window on its own, but runs in a "black DOS-shell", like FTP.EXE and TELNET.EXE
User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is meant by console in c?

What you meant to ask is:What is mean by console application in Windows programming?Answer: a program that doesn't open a window on its own, but runs in a "black DOS-shell", like FTP.EXE and TELNET.EXE


What is console application in c sharp?

The console application in C sharp(C#) is a simple application which takes input and returns output on a command line console, with the following data streams: standard input, standard output, and standard error.


What is the use of console application in c sharp?

A console application is an Windows application where you only have access to a command-line console. You cannot use Win Forms with a console application. The Console class contains methods that you can use to interact with the user, such as Console.WriteLine("Hello World!"); They are useful if you want to write a program that you can run from a command line that does not need a graphical interface.


Can you console in more than one variable at once in c?

Yes, you can. You can pass an array of data to your console application.


Is possible to transfer c sharp console application program to giff file type?

There is no standard file type as GIFF. You probably mean GIF (graphics interchange format). If so, the answer is no;- you cannot convert a C# console application program to an image.


What is meant by console application in dotnet?

Simply a non-GUI app. Like commandline in Windows. A black screen with text. The purpose of this type of application is to run in commandline.


How can you run C programs on a Mac OS X?

You need the program Xcode which is on one of the Leopard install disks. If you want to make a new C-Application, select "new Project" then "console application" then "standard application".


Can you ask sample program using visual c?

Certainly! Here’s a simple example of a console application in Visual C++ that prints "Hello, World!" to the console: #include <iostream> int main() { std::cout << "Hello, World!" << std::endl; return 0; } To run this program, create a new console application project in Visual Studio, replace the default code in main.cpp with the above code, and run the project.


What is basics of dot net?

It has simple and user-friendly GUI which helps to create web application, windows application, console application etc. rapidly.


How do you run servelet on console application?

Trick question, but no, you don't run servlet on Console Application. You could, but you don't.Servlet is the term used in Java stack to describe a small unit of software to handle HttpRequest and generate HttpResponse. You would need a web server for that to manage other things of servlets need, and to receive requests and send responses.If you truly want to run a servlet on a Console application, essentially you would need to write that console application to mimic what a web server do. Good luck with that.


What is the use of console application in net?

As a "batch" or a command-like application. User may run them explicitly, or schedule them to be run. One good example is to have a console application to walk through a file system at every midnight to delete and backup some file items.


What is the difference between a console application and a graphical application?

Console applications use "DOS type" windows to show information and communicate with user, and that's basically all and create exe format. Graphical applications use forms and allow you to build flexible and user friendly interfaces.