View Code of Problem 77

#include <stdio.h>
#include <string.h>
int main()
{
    char s[5];
    gets(s);
    for(int i=0;i<strlen(s);++i)
    {
        printf("%c",s[i]);
        if(i<strlen(s)-1)
            printf(" ");
    }
}

Double click to view unformatted code.


Back to problem 77