fork download
  1. /* kadai011 */
  2. /* "Hello MIKU!"と表示します。 */
  3. /* 2026.06.14 H.Funayama */
  4. #include <stdio.h>
  5. int main(void) {
  6. printf("Hello MIKU!");
  7. return 0;
  8. }
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
Hello MIKU!