View Code of Problem 54

#include<stdio.h>
#include<math.h>
int main()
{
	int a,m,n,i,j;
	char str[1000];
	gets(str);
	for(i=0;str[i]!='\0';i++)
	{
		if(i==0)
			printf("%c",str[i]);
		else
			printf(" %c",str[i]);
	}
	
} 

Double click to view unformatted code.


Back to problem 54