fork download
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5. char word[] = { 'H', 'e', 'l', 'l', 'o', '!' };
  6. int i;
  7.  
  8. for ( i = 0; i < 6; ++i )
  9. printf ("%c", word[i]);
  10.  
  11. printf ("\n");
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Hello!