fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char moji[26];
  5. int count;
  6. char num='a';
  7. for(count=0;count<26;count++){
  8. moji[count]=num;
  9. printf("%c",moji[count]);
  10. num++;
  11. }
  12. printf("%c\n",moji);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4360KB
stdin
Standard input is empty
stdout
abcdefghijklmnopqrstuvwxyz