fork(4) download
  1. #include <stdio.h>
  2. #include <fcntl.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <unistd.h>
  6.  
  7. int main(void) {
  8. for (char c = 'A' ; c <= 'Z' ; c++) {
  9. write(STDOUT_FILENO, &c, 1);
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2108KB
stdin
Standard input is empty
stdout
ABCDEFGHIJKLMNOPQRSTUVWXYZ