#include <stdio.h>main()...{ int c; int space = 0; while ((c = getchar()) != EOF) ...{ if (c != ' ') ...{ putchar(c); space = 0; } else ...{ if (space == 0) ...{ putchar(' '); ++space; } else ++space; } }}