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

struct obj{
    int a;
    int b;
    char c[10];
};

void print(struct obj one){
    printf("%d", one.a);
    int i;
    for(i = 0; i < sizeof(one.c); i++){
        printf("%c", one.c[i]);
    }
    printf("%d", one.b);
}

int main() {
    struct obj one, two;
    
    one.a=0;
    one.b=0;
    memset(one.c, '\0', sizeof(one.c));
    
    scanf("%d", &one.a);
    scanf("%s", one.c);
    scanf("%d", &one.b);
    
    print(one);
    return 0;
}

Embed on website

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