fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int ascii[] = {72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100};
  5. int len = 11;
  6.  
  7. for (int i = 0; i < len; i++) {
  8. printf("%c", ascii[i]);
  9. }
  10. printf("\n");
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Hello World