2019年2月11日

_Bool and bool

摘要: _Bool is the defined before C99. bool has been defined in C99. bool is an alias for _Bool if you include stdbool.h. Underscores in C are significant, 阅读全文

posted @ 2019-02-11 13:43 荷树栋 阅读(136) 评论(0) 推荐(0)

how to tell gcc with c99 enable

摘要: just copy the make file here. CC = gccCFLAGS = -Wall -std=c99OUTFILE = outputfileOBJS = source.oSRCS = source.c $(OUTFILE): $(OBJS) $(CC) $(CFLAGS) -o 阅读全文

posted @ 2019-02-11 10:21 荷树栋 阅读(144) 评论(0) 推荐(0)

导航