View Code of Problem 58

#include<stdio.h>
int main()
{
	int n=0;
	char str[100];
	while(~scanf("%s",str))
	 {
		n++;  
	 }
	printf("%d",n);
}

Double click to view unformatted code.


Back to problem 58