#include <stdio.h> char *strcpy(char *strDest,char *strSrc) { if(strDest == NULL || strSrc == NULL) return NULL; char *p =strDest; while(*strSrc != '