# 编程练习 **Repository Path**: linlilover/programming-exercises ## Basic Information - **Project Name**: 编程练习 - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### c与c++混编 ``` cd cpp gcc -c foo.c g++ main.cpp foo.o -o main ``` ### c语言编译 ``` cd c语言 gcc main.c -o main 编译链接 gcc -c main.c 编译 ``` ### typescript ``` tsc Test.ts ```