windows C编程最好不要用visual stdio,工具不支持C99标准与不免费是最主要的原因,虽然有破解版本,但作为一个软件人,盗版是首先要抵制的事情,从自我做起。
pellesc是windows c编程利器,整个软件10MB左右,不像visual stdio那么庞大,并且完全支持C99标准。
pellesc中有pocc/cc编译工具,polink链接工具,pomake工程管理工具。作为初学者,最好还是从最基本命令行做起,把每个工具的使用方法掌握。
以下是工程管理Makefile和代码的简单示例。
CC = cc
LD = polink
CFLAGS = /Tx86-coff -Ze -Zx -Go -O2
#CFLAGS = /Tx86-coff -MT -W1 -Gz -Ze -Zx -Go -J -O2
LDFLAGS = -DLL kernel32.lib #-lpthread
TARGET = xu.dll
OBJS = test.obj
COMPILE = $(CC) $(CFLAGS) -MD -c $@ $<
LINK = $(LD) $(OBJS) $(LDFLAGS) /out:$@
ALL:$(TARGET)
$(TARGET):$(OBJS)
$(LINK)
.c.obj
$(COMPILE)
clean:
del -f $(OBJS) *~ *.d *.o $(TARGET)
#include <windows.h>
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include <winbase.h>
int main_test(int argc, char *argv[])
{
int i = 1;
boolean p;
HANDLE dir;
WIN32_FIND_DATA finddata;
p = 0;
if (argc < 2) {
printf("..............wrong!");
return 0;
}
dir = FindFirstFile(argv[1], &finddata);
if (dir == INVALID_HANDLE_VALUE) {
printf("no\n");
} else {
printf("yes\n");
}
while (i <= 10) {
int j = 2;
printf("%03d%d\n", i, j);
i++;
}
printf("%d\n", i);
return 0;
}