2 answers
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)+...
1 answer
7
If integer needs 2 bytes of storage, then maximum value of signed integer is?