c语言文件转可执行文件
gcc -c c语言文件名 gcc c语言文件名.o -o 可执行文件名 ./可执行文件
#includestruct Books { char title[50]; char author[50]; char subject[100]; int book_id; } book = {"C 语言", "RUNOOB", "编程语言", 123456}; int main() { printf("title : %snauthor: %snsubject: %snbook_id: %dn", book.title, book.author, book.subject, book.book_id); }



