Computer Science, asked by rajeshtiwary3305, 1 year ago

The command that is used to accept data from a user during the execution a program?

Answers

Answered by Rithesh52
11
It simply accepts binary data as input and processes data according to those instructions and provides the result as output. It is the logic machine. So, its main function is run the program by fetching instructions from the RAM, evaluating and executing them in sequence.
Answered by StaceeLichtenstein
4

scanf in c

cin in c++

command line argument in Java .

Explanation:

  • The scanf statement in the c programming language is used to accept the data from the user during the program execution.
  • In C++ we can used the cin statement which is accpet the data from the user in the execution time.
  • In Java we will used the command line argument or by scanner class we can getting the input from user in the running time of the program .

Learn More :

  • brainly.in/question/7811598
Similar questions