Posted by: testdirector August 3, 2005
Information technology
Login in to Rate this Post:     0       ?        
#include "stdio.h" int main() { char *p, *q, *st; st = p = "abcde"; q = "pqrst"; while(*p++=*q++); printf("%s", st); return 0; }
Read Full Discussion Thread for this article