吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1414|回复: 6
收起左侧

[已解决] c语言结构体指针,为什么在vc6编译会出错

[复制链接]
d173220523 发表于 2020-4-12 16:37
本帖最后由 d173220523 于 2020-4-12 21:20 编辑

[C] 纯文本查看 复制代码
#include<stdio.h>
struct Student        
{        
        int x;
        int y;
};        
int main()
{
        Student**** s;                        
        s = (Student****)100;                        
        s++;                //s的值是多少?        
        s = s+2;                //s的值是多少?        
        s = s-3;                //s的值是多少?        
}



--------------------Configuration: bvcb - Win32 Debug--------------------
Compiling...
bvcb.c
D:\bvcb.c(9) : error C2065: 'Student' : undeclared identifier
D:\bvcb.c(9) : error C2065: 's' : undeclared identifier
D:\bvcb.c(9) : error C2100: illegal indirection
D:\bvcb.c(9) : error C2100: illegal indirection
D:\bvcb.c(9) : error C2100: illegal indirection
D:\bvcb.c(9) : warning C4552: '*' : operator has no effect; expected operator with side-effect
D:\bvcb.c(10) : error C2059: syntax error : ')'
执行 cl.exe 时出错.

bvcb.exe - 1 error(s), 0 warning(s)

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

luo青山 发表于 2020-4-12 16:57
不知道你定义了x,y用来干嘛的,主函数里也没有实例化
Lixinist 发表于 2020-4-12 17:01
这是谭浩强的题目吗
[C] 纯文本查看 复制代码
typedef struct _Student
{
	int x;
	int y;
}Student, *PStudent;
int main()
{
	Student**** s;
	s = (Student****)100;
	s++;        //s的值是多少?   
	s = s + 2;        //s的值是多少?   
	s = s - 3;        //s的值是多少?   
}
古月不傲 发表于 2020-4-12 17:11
我的爱是你 发表于 2020-4-12 17:15
C语言不加typedef 进行声明,或使用时不加struct 进行修饰当然报错,而.cpp 也就是vs以c++编译则可以直接使用不报错。
monki 发表于 2020-4-12 17:35
为什么要用vc6,vs多好用啊
gdf87521 发表于 2020-4-19 21:35
又是滴水的神操作
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-30 05:56

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表