C正則表達式

void *memset(void *s,int c,size_t n) 總的做用:將已開闢內存空間 s 的首 n 個字節的值設爲值 c。 例子 : main(){    char *s="Golden Global View";    clrscr(); //clear screen    memset(s,'G',6);    printf("%s",s);       getchar();
相關文章
相關標籤/搜索