#include <stdio.h>

void good_morning();
void good_afternoon();
void good_evening();


void good_morning(){
    printf("good morning\n");
}
void good_afternoon(){
    printf("good afternoon\n");
}

void good_evening(){
    printf("good evening\n");
}   
int main() {
    good_morning();
    good_afternoon();
    good_evening();
    return 0;
}

Embed on website

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