#include #include void main() { char s[] = ",."; char *p; p = s; while(*p++ == '.' || *p == '.') print("dot"); exits(0); }