作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么会报错?
#include<stdio.h>
#include<stdlib.h>
typedef struct bST
{
int ID;
char name[30];
char surname[30];
int friendsID[30];
struct BST *left;
struct BST *right;
}BST;
int main ()
{
}
BST *newNode(int ID, char name[], char surname[], int friendsID[])
{
BST *newNodeTemp=(BST*)malloc(sizeof(BST));
if(newNodeTemp==NULL)
{
printf("Not Allowed!!\n");
exit(0);
}
newNodeTemp->ID=ID;
newNodeTemp->name=name; //error here
newNodeTemp->surname=surname; // error here
newNodeTemp->friendsID=friendsID; //error here
}
数组类型错误初始化姓名好友数组。
最佳答案
newNodeTemp->name=name; //error here
newNodeTemp->surname=surname; // error here
newNodeTemp->friendsID=friendsID; //error here
这些会产生错误,因为您试图分配给数组,即使用数组作为左值。
对于char
数组,如果它们以nul结尾,则使用strcpy
(如果不是,则使用memcpy
),对于int
您可以使用 memcpy
数组将内容从一个复制到另一个。
关于c - C 结构中的初始化和声明数组但给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43006334/
我有一个经典的 ASP 页面 (VBscript),它在服务器端生成 XML,然后 Response.Writes。该页面根本没有客户端。 但是我需要将其转换为 JSON。由于我找不到有效的 ASP
我想从客户端应用程序的 HDFS 中读取特定的 SequenceFile。我可以使用 SequenceFile.Reader 来做到这一点,它工作正常。但是是否也可以通过分析抛出的 IOExcepti
我是一名优秀的程序员,十分优秀!