#include <stdio.h>
void push(char s[]); 
int main() {
    char *a = "AHO";
    push("AHO");
    printf("Hello world!\n");
    return 0;
}
void push(char s[]) {
    puts(s);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: