有幾種方法可以清除控制台或輸出螢幕,其中之一是clrscr()函數。它在調用函數時清除螢幕。它在“conio.h”頭文件中聲明。還有一些其他方法,如system("cls")和system("clear"),它們在「stdlib.h」頭檔中聲明。
以下是在C語言中清除控制台的語法:
clrscr(); OR system(“cls”); OR system(“clear”);
以下是一個用C語言清除控制台的範例:
假設我們有一個名為" new.txt"的文件,其內容如下:
0,hell!o 1,hello! 2,gfdtrhtrhrt 3,demo
現在,讓我們來看一個例子。
#include<stdio.h> #include<conio.h> void main() { FILE *f; char s; clrscr(); f=fopen("new.txt","r"); while((s=fgetc(f))!=EOF) { printf("%c",s); } fclose(f); getch(); }
0,hell!o 1,hello! 2,gfdtrhtrhrt 3,demo
clrscr(); f=fopen("new.txt","r"); while((s=fgetc(f))!=EOF) { printf("%c",s); }
以上是如何在C語言中清除控制台?的詳細內容。更多資訊請關注PHP中文網其他相關文章!