View Code of Problem 77

#include<stdio.h>

int main()
{
	char s[5];
	
	scanf("%s", s);
	for(int i = 0; i < 3; i++)
		printf("%c ", s[i]);
	printf("%c", s[3]);
	return 0;
}

Double click to view unformatted code.


Back to problem 77