Can anyone please help me? I need to remove the first character from a char * in C.
char *
For example, char * contents contains a \'\\n\'
char * contents
\'\\n\'
#include #include int main () { char src[50] = "123456789123434567678"; char dest[16]={0}; memcpy(dest, src+1,sizeof(src)); printf("%s\n",dest); return(0); } src+1 -> indicate how many char you want to remove