本試題僅用於考查c++/c程式設計師的基本程式設計技能。內容限於c++/c常用語法,不涉及資料結構、演算法以及深奧的語法。考試成績能反映出考生的程式設計質量以及對c++/c的理解程度,但不能反映考生的智力和軟體開發能力。
筆試時間90分鐘。請考生認真答題,切勿輕視。
請寫出 bool flag 與「零值」比較的 if 語句:
請寫出 float x 與「零值」比較的 if 語句:
請寫出 char *p 與「零值」比較的 if 語句:
二、以下為windows nt下的32位c++程式,請計算sizeof的值(10分)
char str = 「hello」 ;
char *p = str ;
int n = 10;
請計算
sizeof (str ) =
sizeof ( p ) =
sizeof ( n ) =
void func ( char str[100])
void *p = malloc( 100 );
請計算
sizeof ( p ) =
三、簡答題(25分)
1、標頭檔案中的 ifndef/define/endif 幹什麼用?
2、#include 和 #include 「filename.h」 有什麼區別?
3、const 有什麼用途?(請至少說明兩種)
4、在c++ 程式中呼叫被 c編譯器編譯後的函式,為什麼要加 extern 「c」宣告?
5、請簡述以下兩個for迴圈的優缺點
// 第乙個
for (i=0; i// 第二個
if (condition)
void test(void)
請問執行test函式會有什麼樣的結果?
答: char *getmemory(void)
void test(void)
請問執行test函式會有什麼樣的結果?
答: void getmemory2(char **p, int num)
void test(void)
請問執行test函式會有什麼樣的結果?
答: void test(void) }
請問執行test函式會有什麼樣的結果?
答: 五、編寫strcpy函式(10分)
已知strcpy函式的原型是char *strcpy(char *strdest, const char *strsrc);
其中strdest是目的字串,strsrc是源字串。
(1)不呼叫c++/c的字串庫函式,請編寫函式 strcpy
(2)strcpy能把strsrc的內容複製到strdest,為什麼還要char * 型別的返回值?
六、編寫類string的建構函式、析構函式和賦值函式(25分)
已知類string的原型為:
class string
; 請編寫string的上述4個函式。
二、以下為windows nt下的32位c++程式,請計算sizeof的值(10分)
char str = 「hello」 ;
char *p = str ;
int n = 10;
請計算
sizeof (str ) = 6 (2分)
sizeof ( p ) = 4 (2分)
sizeof ( n ) = 4 (2分)
void func ( char str[100])
void *p = malloc( 100 );
請計算 sizeof ( p ) = 4 (2分)
三、簡答題(25分)
1、標頭檔案中的 ifndef/define/endif 幹什麼用?(5分)
答:防止該標頭檔案被重複引用。
2、#include 和 #include 「filename.h」 有什麼區別?(5分)
答:對於#include ,編譯器從標準庫路徑開始搜尋 filename.h
對於#include 「filename.h」 ,編譯器從使用者的工作路徑開始搜尋 filename.h
3、const 有什麼用途?(請至少說明兩種)(5分)
答:(1)可以定義 const 常量
(2)const可以修飾函式的引數、返回值,甚至函式的定義體。被const修飾的東西都受到強
制保護,可以預防意外的變動,能提高程式的健壯性。
4、在c++ 程式中呼叫被 c編譯器編譯後的函式,為什麼要加 extern 「c」? (5分)
答:c++語言支援函式過載,c語言不支援函式過載。函式被c++編譯後在庫中的名字與c語言的不
同。假設某個函式的原型為: void foo(int x, int y); 該函式被c編譯器編譯後在庫中的名字
為_foo,而c++編譯器則會產生像_foo_int_int之類的名字。 c++提供了c連線交換指定符號
extern「c」來解決名字匹配問題。
5、請簡述以下兩個for迴圈的優缺點(5分)
for (i=0; i
四、有關記憶體的思考題(每小題5分,共20分)
void getmemory(char *p)
void test(void)
請問執行test函式會有什麼樣的結果?
答:程式崩潰。因為getmemory並不能
傳遞動態記憶體, test函式中的 str一
直都是 null。
strcpy(str, "hello world");
將使程式崩潰。
char *getmemory(void)
void test(void)
請問執行test函式會有什麼樣的結果?
答:可能是亂碼。 因為getmemory返回的
是指向「棧記憶體」的指標,該指標的位址
不是 null,但其原現的內容已經被清
除,新內容不可知。
void getmemory2(char **p, int num)
void test(void)
請問執行test函式會有什麼樣的結果?
答: (1)能夠輸出hello (2)記憶體洩漏
void test(void) }
請問執行test函式會有什麼樣的結果?
答:篡改動態記憶體區的內容,後果難以
預料,非常危險。 因為free(str);之後
str成為野指標, if(str != null)語句
不起作用。
五、編寫strcpy函式(10分)
已知strcpy函式的原型是 char *strcpy(char *strdest, const char *strsrc);
其中strdest是目的字串,strsrc是源字串。
(1)不呼叫c++/c的字串庫函式,請編寫函式
strcpy char *strcpy(char *strdest, const char *strsrc);
(2)strcpy能把strsrc的內容複製到strdest,為什麼還要char * 型別的返回值?
答:為了實現鏈式表示式。 // 2分
例如 int length = strlen( strcpy( strdest, 「hello world」) );
六、編寫類string的建構函式、析構函式和賦值函式(25分)
已知類string的原型為:
class string
; 請編寫string的上述4個函式。
標準答案:
// string的析構函式
string::~string(void) // 3分
//string的普通建構函式
string::string(const char *str) // 6分
else }
// 拷貝建構函式
string::string(const string &other) // 3分
// 賦值函式
string & string::operate =(const string &other) // 13分
C C 筆試題目
1.c語言中無符號數與有符號數 unsigned int a 6 int b 20 printf a b d n a b 輸出 14 printf a b s n a b 0 0 0 輸出a b 0 有符號數和無符號數在進行比較運算時 有符號數隱式的轉換成無符號數。上述中,a b的值為 14 111...
c c 筆試題目 轉2
一 請填寫bool float,指標變數 與 零值 比較的 if 語句。10分 請寫出 bool flag 與 零值 比較的 if 語句。3分 標準答案 if flag if flag 如下寫法均屬不良風格,不得分。if flag true if flag 1 if flag false if fl...
C C 筆試 面試題目總結,
基本都沒寫答案,查詢答案的過程就是學習的過程,會的也會引起一些思考。1.extern extern c 的作用,如何判斷一段程式是由c 編譯還是由c 編譯程式編譯的?2.程序和執行緒的區別和聯絡 3.inline 的作用 4.kmp演算法 5.函式呼叫方式 cdecl 堆疊由呼叫者清除 引數從右至左...