摘要:
exit()通常是用在子程序中用来终结程序用的,使用后程序自动结束,跳回操作系统。 exit(0) 表示程序正常退出,exit⑴/exit(-1)表示程序异常退出。 exit() 结束当前进程/当前程序/,在整个程序中,只要调用 exit ,就结束。 函数名: exit() 所在头文件:stdlib 阅读全文
摘要:
1、typedef的最简单使用 1 typedef long byte_4; 1 typedef long byte_4; 1 typedef long byte_4; typedef long byte_4; 给已知数据类型long起个新名字,叫byte_4。 2、 typedef与结构结合使用 阅读全文