View Code of Problem 54

# include<stdio.h>
# include<string.h>
int main(void)
{
    char a[100];
    int i;
    gets(a);
    for(i=0;i<strlen(a);++i)
    {
        if(i==0)
        {
            printf("%c",a[i]);
        }
        else
        printf(" %c",a[i]);
    }
    return 0;
}

Double click to view unformatted code.


Back to problem 54