View Code of Problem 58

#include<stdio.h>
int main() {
  char s[80];
  int count = 0;
  while (scanf("%s", s) != EOF)count++;
  printf("%d", count);
  return 0;
}

Double click to view unformatted code.


Back to problem 58