fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char s[10] = {0};
  5. for(int i = 0; i < 9; ++i) s[i] = rand()%26+'A';
  6. printf("%s\n",s);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4420KB
stdin
Standard input is empty
stdout
NWLRBBMQB