gpt4 book ai didi

c - C语言中如何获取字符串的字符索引?

转载 作者:行者123 更新时间:2023-11-30 20:02:27 25 4
gpt4 key购买 nike

如何获取当前字符索引(C 语言)?

char *s = "abcdefghijklmopqrstuvwxyz";
*s++;
*s++;
*s++;
printf("%c\n", *s); // print character 'd'
printf("%d\n", s - *s); // should print 3, but not working

我希望获得索引 (3),但如何以编程方式对其进行编码?

最佳答案

char *s = "abcdefghijklmopqrstuvwxyz";
char *t = s;
*s++;
*s++;
*s++;
printf("%c\n", *s); // print character 'd'
printf("%d\n", s - t); // print 3

应该这样做。

关于c - C语言中如何获取字符串的字符索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16487348/

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