sprintf example */ #include <stdio.h> int main () { char buffer [50]; int n, a=5, b=3; n=sprintf (buffer, "%d plus %d is %d" , a, b, a+b); printf ( "[%s] is ...
確定! 回上一頁