#include <stdio.h>
void printHello();
void printGoodbye();
void printVANSHIKA(); //function declaration
int main() {
printHello();
printGoodbye();
printVANSHIKA();
return 0; //function call
}
void printHello() {
printf("Hello \n");
}
void printGoodbye() {
printf("Goodbye \n");
}
void printVANSHIKA() {
printf("VANSHIKA \n"); //function defination
}
To embed this project on your website, copy the following code and paste it into your website's HTML: