1 votes
1
strcpy() char* strcpy(char*s,char*t) { *s=malloc(strlen(source)+1); while((*s=*t)!='\o') { s++; t++; } return s; }Please someone tell, that line *s=malloc(strlen(source)+...
0 votes
4
If integer needs 2 bytes of storage, then maximum value of signed integer is?