2. Write a C program function that returns the initials of a given name to the main function. Example: BELLO ALAMIN MUHAMMAD = BAM

PHOTO EMBED

Sun Aug 20 2023 13:33:00 GMT+0000 (Coordinated Universal Time)

Saved by @Codes

// Online C compiler to run C program online
#include <stdio.h>
#include <string.h>

char intials(char house[]){
    for(int i = 0; i < 50; i++){
        if(a[i])
      
    }
   
    
}

int main() {
    char name[50] = "BELLO ALAMIN MUHAMMAD";
    intials(house);
    
    

    return 0;
}
content_copyCOPY