C语言printout函数实例 C语言limit.h实例 C语言使用修饰符和标记实例 C语言printout函数实例 /* printout.c -- uses conversion specifiers */ #include <stdio.h> #define PI 3.141593 int main(void) { int number = 7; float pies = 12.75; int cost = 7800; printf("The %d contestants ate %f berry pies.\n", number, pies); printf("The value of pi is %f.\n", PI); printf("Farewell! thou art too dear for my possessing,\n"); printf("%c%d\n", '$', 2 * cost); return 0; } C语言limit.h实例 C语言使用修饰符和标记实例