View Code of Problem 77

#include<stdio.h>
main()
{
	int a,b,c,d;
	scanf("%c%c%c%c",&a,&b,&c,&d);
	printf("%c %c %c %c",a,b,c,d);
}

Double click to view unformatted code.


Back to problem 77