+ 4
What is stdin and stdout ???
Also tell me how to use it
1 Odpowiedź
+ 5
stdin and stdOut aren't functions. They are streams. You hand the stream to a function in order to read from it.
stdin = input / read ...
stdOut = output/write.
Also tell me how to use it