#include<stdio.h>

void printString(char arr[]);

int main() {
    char fullName[100];
    scanf("%s",fullName);
    printf("your fullName is: %s",fullName);

    return 0;
}

void printString(char arr[]) {
    for(int i=0; arr[i] !='\0';i++){
        printf("%c",arr[i]);
    }
    printf("\n");
}

Embed on website

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