文章详情
时间:2010-07-05 来源:hnrainll
#include <stdio.h> #include <stdlib.h> #include <setjmp.h> jmp_buf ebuf; void fun(void); int main(int argc, char *argv[]) { int i; printf("1 "); i = setjmp(ebuf); if(i == 0) { fun(); printf("This will not be printed."); } printf("%d \n", i); system("pause"); return 0; } void fun(void) { printf("3 "); longjmp(ebuf, 5); }
方块拼凑最新版 v1.0 安卓版
愤怒的小鸟爆破安卓版 v2.7.0 手机版
1970-01-01