橘子味的心
有时候我是一颗让人酸的流泪的橘子
二十五岁时我们都一样愚蠢、多愁善感,喜欢故弄玄虚,可如果不那样的话,五十岁时也就不会如此明智。
C语言基础 C语言标准库 C语言实例 C语言100例 标题:C库函数 - sprintf() C库函数 - sprintf() #include <stdio.h> #include <math.h> int main () { char str[80]; sprintf(str, "Value of Pi = %f", M_PI); puts(str); return(0); }
#include <stdio.h> #include <math.h> int main () { char str[80]; sprintf(str, "Value of Pi = %f", M_PI); puts(str); return(0); }