#include <stdio.h>
void namaste();
void bonjour();

int main() {
    printf("enter f for french & i for indian : ");
    char ch;
    scanf("%c", &ch);
    
    if (ch== 'i'){
       printf("namaste");
    } else{
        printf("bonjour");
    }
    return 0;
    }
    
    void namaste(){
        printf("namaste\n");
    }
    
    void bonjour() {
        printf("bonjour\n");
    }
   

Embed on website

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