How to remove first character from C-string?

后端 未结 7 1406
小鲜肉
小鲜肉 2021-02-04 01:52

Can anyone please help me? I need to remove the first character from a char * in C.

For example, char * contents contains a \'\\n\'

7条回答
  •  萌比男神i
    2021-02-04 02:16

    Here is my code.
    So simple

    #include 
    #include
    int main()
    {
        char *str="hello";
        printf("%s",&str[1]);
        return 0;
    }
    

提交回复
热议问题