adsense

2011-09-20

[linux] makefile


#include
#include
#include
int main(void){
char word[20];
bzero(word,sizerof(word));
strcpy(word"this is a book");
}


vim makefile
all:
gcc-o xxx.xxx.c   //xxx檔名
clean:
rm -f xxx
:wq!    //離開
make clean
make

./xxx   //執行

結果
this is a book

沒有留言:

張貼留言