View Code of Problem 77

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

Double click to view unformatted code.


Back to problem 77