Posted by: sojodude August 2, 2005
Information technology
Login in to Rate this Post:     0       ?        
char* p; char* q; p = "pqrst\0"; q = "abcde\0"; while(*p==*q) { p++; q++; } should be the same as: while(*p++=*q++); But this Damn visual C++ is giving a link error..Why??
Read Full Discussion Thread for this article