structs 直接声明 C
作者:Ricardi 提问时间:12/7/2021
这段代码有什么问题?我不明白为什么这不起作用。 struct point { int x; int y; } eh; void main() { eh = {1, 2}; printf("...
体初始 问答列表
作者:Ricardi 提问时间:12/7/2021
这段代码有什么问题?我不明白为什么这不起作用。 struct point { int x; int y; } eh; void main() { eh = {1, 2}; printf("...
作者:Swagnik 提问时间:3/12/2022
我在尝试编译此代码时遇到错误.......尝试了不同的 IDE #include<stdio.h> #include<stdlib.h> struct car{ int price[5]; }c...
作者:Keneth Cayas 提问时间:11/6/2020
你好,我是 C 语言的初学者,我不知道为什么 每次尝试编译时,我都会在此行上收到此错误 CURRENT->name = {'L','O','U','D','A'}; 这是我的整个代码 #in...