Why *c++ increasing pointer value but not the ascii of first Char?

前端 未结 0 1454
深忆病人
深忆病人 2021-02-06 11:42
#include 

int main() {
    char *c = "test";

    while (*c != \'\\0\') {
        printf("%c", *c);
        *c++; // or c++ both prod         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题