View Code of Problem 77

#include <stdio.h>
#include <stdlib.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char *argv[]) {
	char a[1000];
	int i;
	gets(a);
	for(i=0;i<strlen(a);i++){
		printf("%c ",a[i]);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 77