# C语言踩坑指南 **Repository Path**: chenshaohua/Clang ## Basic Information - **Project Name**: C语言踩坑指南 - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-12-04 - **Last Updated**: 2022-04-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README C语言踩坑指南 #include int main(){ scanf("int长度为long long unsigned int(long long 长)"); printf("int长度为%llu",sizeof(int)); } 菜鸟教程的一个小bug 以下是菜鸟实例 实例 #include #include int main() { printf("int 存储大小 : %lu \n", sizeof(int)); return 0; }