Without the ability to read input, it might be difficult to prevent a program from performing the same same action each time it is run, which can grow monotonous after a while.
To read input, the simplest method is to invoke the function getchar. Getchar reads one character from "standard input," which is typically the user's keyboard but which the operating system may occasionally divert. Getchar returns the character it reads or the special value EOF ("end of file") if there are no more characters to read.
Putchar is a companion function that outputs one character to the "standard output."
#include <stdio.h>
/* copy input to output */
main()
{
int c;
c = getchar();
while(c != EOF)
{
putchar(c);
c = getchar();
}
return 0;
}
Learn more about output here-
https://brainly.com/question/24179864
#SPJ4