c語言怎麼讀
Ⅰ c語言函數怎麼發音
按英文。
scanf --- 由 scan 和 f 組成。 scan 掃描的意思,普通話音「斯看」,f 按字母讀音 「愛夫」,f 是 formated (有格式)縮寫。連讀「斯看-愛夫」。
printf --- 由 print 和 f 組成。print 列印,普通話音 撲林特,其中撲 不帶韻母地發音。 f 按字母讀音 「愛夫」,f 是 formated (有格式)縮寫。連讀 撲林特-愛夫
gets -- 由 get 和 s 組成。 get 取得的意思,普通話音「蓋特」,其中特 不帶韻母地發音. s 按字母讀音. s -- strings 縮寫。
fscanf -- 由f , scan 和 f 組成。兩個f 分別按字母讀音 「愛夫。連讀「愛夫-斯看-愛夫」。
其他類推。
Ⅱ c語言 怎麼讀內存數據
分配內存空間然後讀取
#include<stdio.h>
#include<stdlib.h>
intfilelength(FILE*fp);
char*readfile(char*path);
intmain(void)
{
FILE*fp;
char*string;
string=readfile("c:/c.c");
printf("讀入完畢 按任意鍵釋放內存資源 ");
//printf("%s ",string);
system("pause");
return0;
}
char*readfile(char*path)
{
FILE*fp;
intlength;
char*ch;
if((fp=fopen(path,"r"))==NULL)
{
printf("openfile%serror. ",path);
exit(0);
}
length=filelength(fp);
ch=(char*)malloc(length);
fread(ch,length,1,fp);
*(ch+length-1)='