摘要: // crt_sprintf.c// compile with: /W3// This program uses sprintf to format various// data and place them in the string named buffer.#include int main( void ){ char buffer[200], s[] = "computer", c = 'l'; int i = 35, j; float fp = 1.7320534f; // Format and print various data: j = sp 阅读全文
posted @ 2013-06-05 20:02 慧由心生 阅读(2046) 评论(0) 推荐(0)