View Code of Problem 77

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

Double click to view unformatted code.


Back to problem 77