摘要: 概述 printf() 的作用: Print formatted output to the standard output stream. printf() 的函数原型: int printf( const char *format, argument1, argument2, ... ); pr 阅读全文
posted @ 2025-09-15 07:45 有空 阅读(96) 评论(0) 推荐(0)
摘要: 两种写法: #include <stdio.h> // 编译系统在系统头文件所在目录搜索 #include "stdlib.h" // 编译系统首先在当前的源文件目录中查找 stdlib.h,找不到的话,再转向系统头文件所在目录搜索 引用系统头文件时,使用两种形式都可以,但是 #include <> 阅读全文
posted @ 2025-09-15 07:12 有空 阅读(10) 评论(0) 推荐(0)