# vscode-gcc **Repository Path**: tj123/vscode-gcc ## Basic Information - **Project Name**: vscode-gcc - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # VSCode Gcc Hello World ## 说明 ```bash # 编译时候没有包含调试信息 gcc main.c -o main.exe # 包含有调试信息可以使用 vscode 调试 gcc -g main.c -o main.exe ```