About 52 results
Open links in new tab
  1. c - What exactly is stdin? - Stack Overflow

    Jun 8, 2017 · I am a bit confused regarding the implementation of stdin. What exactly is it? Is it a pointer? I tried to print the size of stdin using sizeof on a 64 bit machine and got 8. I even de …

  2. Confused about stdin, stdout and stderr? - Stack Overflow

    Aug 2, 2010 · These values are always used for stdin, stdout, and stderr: 0: stdin 1: stdout 2: stderr Ironically I found this question on stack overflow and the article above because I was searching for …

  3. c - What is “standard input”? - Stack Overflow

    Oct 23, 2013 · 3 Yes, standard input (stdin) is input exepected from the keyboard. So, could be in the form of user input from a basic program or from a command line argument. Standard output (stdout) …

  4. что такое потоки STDIN, STDOUT? - Stack Overflow на ...

    STDIN, STDOUT и STDERR - это три специальных файла, которые связываются с терминалом (на Windows - с консолью) в консольных приложениях. Файл STDIN (стандартный ввод) по …

  5. What is stdin in C language? - Stack Overflow

    Jun 9, 2016 · stdin is an "input stream", which is an abstract term for something that takes input from the user or from a file. It is an abstraction layer sitting on top of the actual file handling and I/O.

  6. stdin - How to read from a file or standard input in Bash - Stack Overflow

    Aug 8, 2011 · Reading from stdin into a variable or from a file into a variable. Most examples in the existing answers use loops that immediately echo each of line as it is read from stdin.

  7. python - How do I read from stdin? - Stack Overflow

    How do I read from standard input (stdin)? There's a few ways to do it. sys.stdin is a file-like object on which you can call functions read or readlines if you want to read everything or you want to read …

  8. Como ler do stdin em C? - Stack Overflow em Português

    Dec 5, 2014 · Como devo ler carateres, dígitos e strings do stdin em C? getchar; fgetc; fgets; getc; scanf; Estou aqui a tentar ler da consola e há sempre algum problema com a leitura da mesma. Já …

  9. stdin - How do I read a string entered by the user in C ... - Stack ...

    I want to read the name entered by my user using C programmes. For this I wrote: char name [20]; printf ("Enter name: "); gets (name); But using gets is not good, so what is a better way?

  10. reading from stdin in c++ - Stack Overflow

    Dec 16, 2012 · reading from stdin in c++ Asked 13 years, 9 months ago Modified 4 years, 9 months ago Viewed 264k times