Linux C基礎

來源:互聯網
上載者:User

Linux C基礎

一、基本資料和函數

int、char、float、double

(1)格式輸入輸出

scanf()  //鍵盤讀取

printf()   //%d、%c、%s、%f

(2)輸入輸出單個字元

getchar()

putchar()

執行個體:

int num;

scanf("%d",&num);

    printf("num=%d",num);

     char a;

    a = getchar();

    putchar(a);

二、字串

strlen

strcpy

strcmp

strcat

字串與字元數組的區別是字串的末尾有一個Null 字元'\0'以標識字串結束

     用scanf()語句讀入字串時不允許輸入中存在空格

     gets() 和 puts()函數分別用於字串的輸入和輸出

三、結構

struct name{

...

};

typedef定義類型

typedef int myInt;

四、檔案操作

fopen (被開啟的檔案如果在目前的目錄下,則可以省略路徑,否則使用帶路徑檔案名稱,注意表示各級目錄之間使用逸出字元‘\\’,而不能使用‘\’。開啟檔案後,要對傳回值進行判斷,檢查是否開啟了檔案。只有開啟了檔案才能繼續進行其它操作)
fclose
fflush 清除流

fputc字元輸出
fgetc字元輸入

feof 檔案結束

fgets 字串輸入
fputs 字串輸出

fread 欄位輸入
fwrite 欄位輸出

fprintf

rewind檔案定位
fseek(移動檔案流的讀寫位置)  
ftell(返迴文件流當前的讀寫位置)
fgetpos,fsetpos,lseek

ferror
clearerr

setbuf清除流

執行個體:

    char filename[] = "/Users/kllmctrl/Desktop/HelloC/HelloC/test.txt";        FILE *fp;    if((fp=fopen(filename,"w"))==NULL)    {        printf("cannot open this file\n");        exit(0);    }    fclose(fp);

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.