本文介绍了如何分配一个值到字符串数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char substr[10][20];
int main() {
substr[0] = "abc";
printf("%d", substr[0]);
}
当然以上是错误的?怎么做?谢谢
of course above is wrong? how to do it? thanks
推荐答案
您不能分配这样的字符串C.相反,使用的strcpy(SUBSTR [0],ABC)
。此外,使用%S
不是%d个
在的printf
You can't assign strings like that in C. Instead, use strcpy(substr[0], "abc")
. Also, use %s
not %d
in your printf
这篇关于如何分配一个值到字符串数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!