07 2010 档案
摘要:1. 不可以给一个指针赋一个空指针,例如:int* p1;int* p2;p2 = p1;2. fflush函数NAME fflush - flush a streamSYNOPSIS #include <stdio.h> int fflush(FILE *stream);DESCRIPTION The function fflush() forces a write of all user-space buffered data for the given output or update stream via the stream’s underlying write func
阅读全文