#include <stdio.h>
#include <string.h> //strcpy

#define MAX_LENGTH 100
void bubbleSort(char userArr[][MAX_LENGTH], int size);

int main() {
    char arr[MAX_LENGTH];
    char numb1[MAX_LENGTH], numb2[MAX_LENGTH], numb3[MAX_LENGTH];
    printf("enter three numbers in alphabets: \n");
    fgets(numb1, sizeof(numb1), stdin);
    fgets(numb2, sizeof(numb2), stdin);
    fgets(numb3, sizeof(numb3), stdin);
    printf("original numbers: \n%s %s %s", numb1, numb2, numb3);


    return 0;
}

void bubbleSort(char userArr[][MAX_LENGTH], int size){
}

Embed on website

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