fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. char buff[1000];
  6. buff[fread(buff,1,999,stdin)]=0;
  7. printf("<%s>",buff);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2252KB
stdin
Ideone is an online compiler and debugging tool which
allows you to compile source code and execute it online
in more than 60 programming languages.
stdout
<Ideone is an online compiler and debugging tool which
allows you to compile source code and execute it online
in more than 60 programming languages.>