#include <stdio.h> /* for fputs, stdout */ int main(void) { char buf[] = "This is text\n"; fputs(buf,stdout); fputs("|",stdout); }. Example Output
確定! 回上一頁