void main(){ char arr[100] scanf("%s",arr); // or gets(arr); to include spaces for(int i=0; arr[i] != ' '; ++i) { printf("%c ",arr[i]); } }