answersLogoWhite

0

It must use a function with a "return" statement.

Or you could output via console.

(.NET CODE(C#))

Console.WriteLine("Output.");

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you get a Java program to display a backslash in output without it interpreting it as a program command?

Follow the backslash with another backslash: System.out.println("\\ " \"); will display \ " \ on the screen.


Is a display adapter a input or output device?

A display ADAPTER is neither. The Display is an output device.


Which program do you create a graph?

You can use MS Excel to create a graph from data in the spreadsheet or from an external source. You also can display a graph with MS Powerpoint. MS Word can display a graph, but usually does not create it.


Is Html an example of an HTML program?

HTML is not a program it is a langue your computer speaks with the browser to create arguments and display data


What is five items you need to create an information system?

Computing hardware. Electrical power. Input data. Algorithms. Output display.


How do you Hold the output window to display output in C language?

std::cin:get(); I guess it's about TurboC in Windows. 1. Press Alt+F5, to see the program's output 2. Run your .EXE in a separate DOS-window (Command Prompt)


What is accuracy of a good program?

It depends on to what level of accuracy you tend to have with the output of your program Accuracy can be treated as: (Desired Output / Actual Output of your Program)


What are the Output devices of a wearable computer?

output is in the form of light,display or voice....


Is MacBook Pro output mirror or dual display?

It is definitly dual display


What is the monitor?

monitor is an output (display) device


When a computer generates a display is called?

When a computer generates any sort of display or result, that is called output. Printers and monitors are examples of output devices.


How do you create program that display your name?

#include<stdio.h> #include<conio.h> void main() { clrscr(); printf("Your name here"); getch(); }