answersLogoWhite

0

Input command is used to enter the values while the program is being executed. this command waits for the user to enter the information and then assigns the values accordingly.

User Avatar

Wiki User

7y ago

What else can I help you with?

Related Questions

What happens when the encounters an input statement?

WHAT HAPPENS WHEN THE COMPUTER ENCOUNTERS AN INPUT STATEMENT


What happen when the computer encounter an input statement?

WHAT HAPPENS WHEN THE COMPUTER ENCOUNTERS AN INPUT STATEMENT


Is pset an input statement?

No.


When you input data in a loop within a program the input statement that proceeds the loop is what?

is called a priming input


How you can use two input in a single statement in c plus plus?

cout<<"______": cin >>__>>__; [example cout<<"enter no."; cin>>a>>b; ]


What is the shortcut key for input statement in QBasic?

There is no shortcut key of input in qbasic


What is input in TNSDL language?

In TNSDL (Temporal Numerical Stream Description Language), the "input" statement is used to specify the input streams of data that the program will operate on. These input streams can be temporal or non-temporal data sources such as sensors, files, or user input. The input statement helps define the data sources that will be processed by the TNSDL program.


What is priming input?

A priming input, also known as priming read, is the statement that reads the first input data record prior to starting a structured loop.


Use in a sentence the word fixed input?

"use in a sentence the word fixed input" "use in a sentence the word fixed input"


In a multistage amplifier input impedance is high and output impedance is low justify the statement?

no. input impedance is low & output impedance is high


What types of input does a mouse use?

A computer mouse does not use any input, it IS an input device.


What is the input statement for a program?

Input statements extract data from an input stream. For example: int x; std::cin >> x; Output statements insert data to an output stream. For example: std::cout << x; You cannot insert data into an input stream and cannot extract data from an output stream. However, streams that are both input and output streams (such as read-write files) can insert and extract data as required, depending on whether you are reading or writing to the stream.