View Code of Problem 77

#include<stdio.h>
int main(){
	char a[4];
	scanf("%s",&a);
	printf("%c %c %c %c",a[0],a[1],a[2],a[3]);
	return 0;
} 

Double click to view unformatted code.


Back to problem 77