View Code of Problem 77

#include<stdio.h>
int main()
{
	char str[4];
	gets(str);
	for(int i=0;i<4;i++)
	{
		if(i==3)
		printf("%c",str[i]);
		else
		printf("%c ",str[i]);
	}
}

Double click to view unformatted code.


Back to problem 77