gpt4 book ai didi

c - 只打印字符串的最右边部分

转载 作者:行者123 更新时间:2023-12-01 07:46:22 24 4
gpt4 key购买 nike

我正在将 printf 和/或其他函数应用于从文件中读取的特定字符串。我想在某些情况下跳过前 5 个字符。现在我认为聪明的做法是,如果条件适用,将字符串指针增加 5:

 if (strlen(nav_code) == 10 ) {nav_code = 5+nav_code;}

但是编译器拒绝了这个:

error: assignment to expression with array type

我误解了什么?如何让我的想法发挥作用 - 还是一个坏主意?

最佳答案

这可能是因为 nav_code 不是指针,而是像 char nav_code[50] 这样的字符数组。尝试以下操作:

char nav_code[50];
char *nav_code_ptr = nav_code;
if (strlen(nav_code_ptr) == 10 ) {nav_code_ptr += 5;}
// forth on, use nav_code_ptr instead of nav_code

关于c - 只打印字符串的最右边部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41736120/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com