首页
社区
课程
招聘
[求助]这段代码编译总是提示未定义的标识符 constraint_handler_t
发表于: 2018-3-14 08:19 2459

[求助]这段代码编译总是提示未定义的标识符 constraint_handler_t

2018-3-14 08:19
2459
#include <stdio.h>
#include <stdlib.h>
#define __STDC_WANT_LIB_EXT1__ 1

void get_y_or_n(void) {
	char response[8];
	size_t len = sizeof(response);
	puts("Continue? [y] n: ");
	if ((gets_s(response, len) == NULL) || (response[0] == 'n')) {
		exit(0);
	}
	puts("You typed y.");
}

int main(void) {
	constraint_handler_t oconstraint = set_constraint_handler_s(ignore_handler_s);
	get_y_or_n();
	return 0;
}


[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 6151
活跃值: (2615)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
constraint_handler_t
set_constraint_handler_s,  constraint_handler_t
Defined  in  header  <stdlib.h>                
constraint_handler_t  set_constraint_handler_s(  constraint_handler_t  handler  );
(since  C11)
2018-3-14 08:52
0
游客
登录 | 注册 方可回帖
返回
//