#include<stdio.h> void main() { // char *a[]={"hjk jk","jij","oiu"}; char *a[6]; int i; for(i = 0; i<6; i++) scanf("%s",a[i]); printf("%s,",a); }