C語言程式設計基礎題庫
一.選擇:
1.給出以下定義:
char acX[ ]= "abcdefg";
char acY[ ]= {'a','b','c','d','e','f','g'};
則正確的敘述為( )
A) 陣列acX和陣列acY等價 B) 陣列acX和陣列acY的長度相同
C) 陣列acX的長度大於陣列acY的長度 D) 陣列acX的長度小於陣列acY的長度
答案:C
2.
void example(char acHello[])
{
printf("%d", sizeof(acHello));
return;
}
void main()
{
char acHello[] = "hello";
example(acHello);//陣列名稱作引數,傳的是地址,一個地址佔四個位元組
return;
}
的輸出是
A 4 B 5 C 6 D不確定
答案:A
3. 有以下程式段
char acArr[]= "ABCDE";
char *pcPtr;
for(pcPtr = acArr; pcPtr < acArr + 5; pcPtr++)
{
printf("%s/n", pcPtr);
}
return;
輸出結果是( )
A) ABCD B) A C) E D) ABCDE
B D BCDE
C C CDE
D B DE
E A E
答案:D
4.在中斷中,不能同步獲取訊號量,但是可以釋放訊號量。
A.正確 B.錯誤
答案:A
5.以下敘述中不正確的是( )
A) 在不同的函式中可以使用相同名字的變數
B) 函式中的形式引數是區域性變數
C) 在一個函式內定義的變數只在本函式範圍內有效
D) 在一個函式內的複合語句中定義的變數在本函式範圍內有效(複合語句指函式中的成對括號構成的程式碼)
答案:D
6.設有如下定義:
unsigned long pulArray[] = {6, 7, 8, 9, 10};
unsigned long *pulPtr;
則下列程式段的輸出結果為( )
pulPtr = pulArray;
*(pulPtr + 2) += 2;
printf ("%d,%d/n", *pulPtr, *(pulPtr + 2));
A)8,10 B)6,8 C)7,9 D)6,10
答案:D
7. 定義結構體時有下面幾種說法,請指出正確的(多選):______
A、結構體中的每個部分,最好進行四位元組對齊;
B、結構體的總長度最好是四位元組對齊;
C、結構中成員的存放不用考慮位元組對齊情況;
答案:A、B
8.void example()
{
int i;
char acNew[20];
for(i = 0; i < 10; i++)
{
acNew[i] = '0';
}
printf("%d/n", strlen(acNew));
return;
}
的輸出為( )
A 0 B 10 C 11 D不確定
答案:D
9.switch(c)中的c的資料型別可以是char、long、float、unsigned、bool. ( )
A. 正確 B. 錯誤
答案:B
10. 網路上傳輸的位元組序預設是大位元組的,如果主機是小位元組序,在網路通訊時則須進行位元組序轉換;如果主機是
大位元組序,為了程式的一致性及可移植性,最好也在程式中加上位元組序轉換的操作(空操作)。
A. 正確 B.錯誤
答案:A
11. struct stu
{
int num;
char name[10];
int age;
};
void fun(struct stu *p)
{
printf("%s/n", (*p).name);
return;
}
void main()
{
struct stu students[3]={ {9801,"Zhang",20},
{9802,"Wang",19},
{9803,"Zhao",18} };
fun(students + 2);
return;
}
輸出結果是( )
A) Zhang B)Zhao C) Wang D) 18
答案:B
12.以下程式執行後,輸出結果是( )
void main( )
{
char *szStr = "abcde";
szStr += 2;
printf("%lu /n",szStr);
return;
}
A cde B 字元c的ASCLL碼值
C "abcde"這個常串中字元c所在的地址 D 出錯
答案:C
13. 在X86下,有下列程式
#include <stdio.h>
void main()
{
union
{
int k;
char i[2];
}*s,a;
s = &a;
s->i[0] = 0x39;
s->i[1] = 0x38;
printf("%x/n", a.k);
}
輸出結果是( )
A) 3839 B) 3938 C) 380039 D) 不可預知
答案:D
14. 全域性變數可以定義在被多個.C檔案包含著的標頭檔案中。
A. 正確 B. 錯誤
答案:B
15.void example()
{
int i;
char acNew[20] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
for(i = 0; i < 10; i++)
{
acNew[i] = '0';
}
printf("%d/n", strlen(acNew));
return;
}
的輸出為:
A 0 B 10 C 11 D不確定
答案:B
16.下列定義正確的有(多選):( )
A: char *pcPtr = "abcd";
B: char pc[4]= "abcd";
C: char pc[] = "abcd";
D: char pc[] = 'abcd';
E: char pc[] = {'a','b','c','d','/0'};
F: char pc[] = 'a' 'b' 'c' 'd';
答案:ACE
17.在函式內部定義的變數(靜態變數、暫存器變數等特殊變數除外)的記憶體是在棧記憶體中,所以在定義函式內部的變數的時候,一定要保證棧不能夠溢位。如果臨時變數
佔用空間較大,應該使用記憶體申請的方式,這樣該變數指向的記憶體就是在堆記憶體中了。
A. 正確 B. 錯誤
答案:A
18.區域性變數可以和全域性變數重名,編譯的時候不會出現錯誤,但一旦不小心,就可能導致使用錯誤變數,所以在定時區域性變數的時候,不要和全域性變數重名。
A. 正確 B. 錯誤
答案:A
19.設有以下巨集定義:
#define N 3
#define Y(n) ((N+1)*n) /*這種定義在程式設計規範中是嚴格禁止的*/
則執行語句:z = 2 * (N + Y(5 + 1));後,z的值為( )
A) 出錯 B) 42 C) 48 D)54
答案:C
20. int *(*ptr)();
則以下敘述中正確的是( )
A) ptr是指向一維組數的指標變數
B) ptr是指向int型資料的指標變數
C) ptr是指向函式的指標,該函式返回一個int型資料
D) ptr是指向函式的指標,該函式的返回值是指向int型資料的指標
答案:D
21. 0x12345678 在採用BigEndian中記憶體的排列順序是______,在採用LittleEndian記憶體中的排列順序是_______.
(答案從左到右記憶體地址依次增加)
A.12 34 56 78 B.34 12 78 56
C.78 56 34 12 D.56 78 12 34
答案:A C
二、填空:
1. .struct tagAAA
{
unsigned char ucId:1;
unsigned char ucPara0:2;
unsigned char ucState:6;
unsigned char ucTail:4;
unsigned char ucAvail;
unsigned char ucTail2:4;
unsigned long ulData;
}AAA_S;
問:AAA_S在位元組對齊分別為1、4的情況下,佔用的空間大小是多少?
答案:9 12
2.typedef struct tagTest
{
UCHAR ucFlag;
ULONG ulLen;
}TEST_S;
TEST_S test[10];
四位元組對齊方式時: sizeof(TEST_S) = ______, sizeof(test)________.
答案:8 80
3
char acHello[] = "hello/0world";
char acNew[15] = {0};
strcpy(acNew,acHello);
strlen(acNew) = _____
sizeof(acHello) = ______
答案:5 12
4.#pragma pack(4)/*編譯選項,表示4位元組對齊*/
int main(int argc, char* argv[])
{
struct tagTest1
{
short a;
char d;
long b;
long c;
};
struct tagTest2
{
long b;
short c;
char d;
long a;
};
struct tagTest3
{
short c;
long b;
char d;
long a;
};
struct tagTest1 stT1;
struct tagTest2 stT2;
struct tagTest3 stT3;
printf("%d %d %d", sizeof(stT1), sizeof(stT2), sizeof(stT3));
return 0;
}
#pragma pack()(編譯選項結束)
請問輸出結果是:_________
答案:12 12 16
5. enum ENUM_A
{
X1,
Y1,
Z1 = 5,
A1,
B1
};
enum ENUM_A enumA = Y1;
enum ENUM_A enumB = B1;
請問 enumA = ____; enumB = ______;
答案:1 7
6.以下程式的輸出結果是________.
#include <stdio.h>
int fun(int x,int y)
{
static int m = 0;8
static int i = 2;3
i += m + 1;12
m = i + x + y;
return m;
}
void main()
{
int j = 4;
int m = 1;
int k;
k = fun(j, m);
printf("%d,", k);
k=fun(j, m);
printf("%d/n", k);
return;
}
答案:8 17
7.以下程式的輸出結果為________
#define CIR(r) r*r /*請注意這種定義的缺陷,不允許這麼定義*/
void main()
{
int a = 1;
int b = 2;
int t;
t = CIR(a + b);
printf("%d/n", t);
return;
}
答案:5
8.在VRP中,實現了strncpy類似的函式,定義如下:
#define CHAR char
#define ULONG unsigned long
#define VOID void
#define MACRO_COPYWORLDLENGTH 4
CHAR *VOS_strncpy(CHAR *pcDest, const CHAR *szSrc, ULONG ulLength)
{
CHAR *pcPoint = pcDest;
if(( NULL == szSrc ) || ( NULL == pcDest ) ))
{
return NULL;
}
while(ulLength && (*pcPoint = *szSrc))/*這裡採用了在判斷語句中賦值的方式(*pcPoint = *szSrc),建議儘量不使用*/
{
pcPoint++;
szSrc++;
ulLength--;
}
if(!ulLength)
{
*pcPoint = '/0';
}
return pcDest;
}
VOID main(VOID)
{
CHAR szStrBuf[ ] = "1234567890";
CHAR szStrBuf1[ ] = "1234567890";
CHAR *szHelloWorld = "Hello World!";
strncpy(szStrBuf, szHelloWorld, MACRO_COPYWORLDLENGTH);
VOS_strncpy(szStrBuf1, szHelloWorld, MACRO_COPYWORLDLENGTH);
printf("%s %s", szStrBuf, szStrBuf1);
}
程式的輸出結果為________
答案:Hell567890 Hell
9.
char acHello[] = "hello/0world";
char acNew[15] = {0};
memcpy(acNew,acHello,12);
strlen(acNew) = _____
sizeof(acHello) = _____
答案:5 12
10. typedef struct Head
{
UCHAR aucSrc[6];
ULONG ulType;
} HEAD_S;
在強制一位元組對齊情況下,請指出sizeof(HEAD_S) = ________;
在強制二位元組對齊情況下,請指出sizeof(HEAD_S) = ________;
在強制四位元組對齊情況下,請指出sizeof(HEAD_S) = ________;
答案:10 10 12
11.union tagAAAA
{
struct
{
char ucFirst;
short usSecond;
char ucThird;
}half;
long lI;
}number;
struct tagBBBBB
{
char ucFirst;
short usSecond;
char ucThird;
short usForth;
}half;
struct tagCCCC
{
struct
{
char ucFirst;
short usSecond;
char ucThird;
}half;
long lI;
};
在位元組對齊為1下,sizeof(union tagAAAA)、sizeof(struct tagBBBBB)、sizeof(struct tagCCCC)是____ ____ _____
在位元組對齊為4下,sizeof(union tagAAAA)、sizeof(struct tagBBBBB)、sizeof(struct tagCCCC)是____ ____ _____
答案:4 6 8
8 8 12
12.struct tagABC
{
char cB;
short sC;
char cD;
long lA;
}*pAbc;
pAbc = 0x100000;
那麼pAbc+0x100 = 0x_________; (ULONG)pAbc + 0x100 = 0x_________;(ULONG *)pAbc + 0x100 = 0x_________;(char *)pAbc + 0x100 = 0x_______;
答案:100C00 100100 100400 100100
13.unsigned long FUNC_C ( unsigned long ulAction )
{
unsigned long ulResult = 0 ;
switch ( ulAction )
{
case ACTION_A:
{
ulResult += 1 ;
break ;
}
case ACTION_B:
{
ulResult += 1 ;
}
default:
{
ulResult += 1 ;
}
}
printf( "ulResult = %u", ulResult ) ;
return ulResult ;
}
當輸入為ACTION_B時,輸出結果為: ulResult = _________;
答案:2(因為此分支沒有break分支)
14.下面的程式碼中,函式Test執行完畢後,列印的結果是 _____。
unsigned long g_ulGlobal = 0;
void GlobalInit(unsigned long ulArg)
{
ulArg = 0x01;
return;
}
void Test()
{
GlobalInit(g_ulGlobal);
printf("%lu", g_ulGlobal);
return;
}
答案:0
15.以下程式的輸出的結果是___________
int x = 3;
void incre();
void main()
{ int i;
for (i = 1; i < x; i++)
{
incre();
}
return;
}
void incre()
{
static int x = 1;
x *= (x + 1);
printf("%d ",x);
return;
}
答案:2 6
16.以下程式的輸出的結果是___________
#pragma pack(4)/*四位元組對齊*/
int main(int argc, char* argv[])
{
unsigned char puc[4];
struct tagPIM
{
unsigned char ucPim1;
unsigned char ucData0:1;
unsigned char ucData1:2;
unsigned char ucData2:3;
}*pstPimData;
pstPimData = (struct tagPIM *)puc;
memset(puc, 0, 4);
pstPimData->ucPim1 = 1;
pstPimData->ucData0 = 2;
pstPimData->ucData1 = 3;
pstPimData->ucData2 = 4;
printf("%02X %02X %02X %02X/n", puc[0], puc[1], puc[2], puc[3]);
return 0;
}
#pragma pack()/*恢復預設對齊方式*/
答案:01 26 00 00
17.
char *pcColor = "blue1" ;
char acColor[] = "blue1" ;
strlen(pcColor) = _____
strlen(acColor) = _____
sizeof(pcColor) = _____
sizeof(acColor) = _____
答案:5 5 4 6
18.
char str[] = "///0";
char *p = str;
int n = 1000;
請計算
sizeof (str ) = ____________
sizeof ( p ) = ______________
sizeof ( n ) = ______________
答案:3 4 4
19.UCHAR *pucCharArray[10][10];
typedef union unRec
{
ULONG ulIndex;
USHORT usLevel[6];
UCHAR ucPos;
}REC_S;
REC_S stMax,*pstMax;
四位元組對齊方式時: sizeof(pucCharArray) = __指標的陣列,每個指標的地址都是4位元組____, sizeof(stMax)=_______, sizeof(pstMax)=__地址______,sizeof(*pstMax)=________.
答案:400 12 4 12
20.typedef union unHead
{
UCHAR aucSrc [6];
struct tagContent
{
UCHAR ucFlag[3];
ULONG ulNext;
}Content;
}HEAD_S;
32CPU,VC編譯環境下:
在強制一位元組對齊情況下,請指出sizeof(HEAD_S) = ________;
在強制二位元組對齊情況下,請指出sizeof(HEAD_S) = ________;
在強制四位元組對齊情況下,請指出sizeof(HEAD_S) = ________;
答案:7 8 8
21.
UCHAR *pszTest = "hello";
UCHAR aucTest[] = "hello";
請問 sizeof(pszTest) = _____ , sizeof(*pszTest) = ______, sizeof(aucTest) = ______.
答案:4 1 6
22. struct BBB
{
long lNum;
char *pcName;
short sDate;
char cHa[2];
short sBa[6];
}*p;
p = 0x100000;
p + 0x1 = 0x____
(unsigned long)p + 0x1 = 0x______
(unsigned long *)p + 0x1 = 0x______
(char *)p + 0x1 = 0x______
答案:100018 100001 100004 100001
23.在4位元組對齊的情況:
typedef struct tagRec
{
long lA1;
char cA2;
char cA3;
long lA4;
long lA5;
} REC_S;
void main(int argc, char *argv[])
{
REC_S stMax ;
printf("/r/n sizeof(stMax)= %d",sizeof(stMax));
return;
}
輸出結果為:
sizeof(stMax)=____
答案:16
24.void main ()
{
unsigned long ulA = 0x11000000;
printf("/r/n%x",*(unsigned char *)&ulA);
return;
}
輸出結果為:
答案:0
三、指出下列程式中導致不能出現預期結果的唯一錯誤(不考慮程式設計規範錯誤)
1.下面程式用於輸出使用者輸入的字串。請指出其中的問題
#define OK 0
#define ERR 1
#define ERROR (-1)
#define BUFFER_SIZE 256
int GetMemory(char **ppszBuf, int num)
{
if( NULL == ppszBuf )
{
ASSERT(0);
return ERROR;
}
*ppszBuf = (char *)malloc(num);
if(NULL == *ppszBuf)
{
return ERROR;
}
return OK;
}
void Test(void)
{
char *pcStr = NULL;
if(OK == GetMemory(&pcStr, BUFFER_SIZE))
{
scanf("%s",pcStr);/*這裡假定BUFFER_SIZE足夠大,不會導致越界*/
printf(pcStr);
free(pcStr);
}
return;
}
答案:要採用printf("%s", str)的形式列印,否則如果輸入為%s, %d等形式可能會導致不可知現象。
2.此函式實現把32位IP地址(主機序)以字串的方式打印出來,請找出程式碼中的錯誤:
char *IpAddr2Str(unsigned long ulIpAddr)
{
char szIpAddr[32];
(void)VOS_sprintf(szIpAddr, "%d.%d.%d.%d", ulIpAddr >> 24,
(ulIpAddr >> 16) & 0xff, (ulIpAddr >> 8) & 0xff, ulIpAddr & 0xff);
return szIpAddr;
}
答案:函式的區域性變數是存放在堆疊中的,此函式返回了堆疊中的地址,函式退出後堆疊中的內容不可用。
3.如下程式用於輸出"Welcome Home"。請指出其中的錯誤:
void Test(void)
{
char pcArray[12];
strcpy(pcArray,"Welcome Home");
printf("%s!", pcArray);
return;
}
答案:陣列越界。
4.如下程式用於把"blue"字串返回,請指出其中的錯誤:
char *GetBLUE(void)
{
char* pcColor ;
char* pcNewColor;
pcColor = "blue";
pcNewColor = (char*)malloc(strlen(pColor));
if(NULL == pcNewColor)
{
return NULL;
}
strcpy(pcNewColor, pcColor);
return pcNewColor;
}
答案:申請記憶體空間不足,字串結尾還有'/0'。
5.下面程式期望輸出str = hello world,請指出其中的錯誤:
char * GetStr(char *p)
{
p = "hello world";
return p;
}
void main()
{
char *str = NULL;
if(NULL != GetStr(str))
{
printf("/r/n str = %s",str);
}
return;
}
答案:無法返回字串,引數使用錯誤。
6.如下程式碼實現如果兩次呼叫FUNC_A函式的時間間隔超過TIME_INTERVAL毫秒,就執行一次DO_Something()操作。
請指出段程式碼中的錯誤:
#define ULONG unsigned long
#define TIME_INTERVAL 200
void DO_Something(void)
{
/*....*/
return;
}
void FUNC_A ( )
{
static ULONG ulPreCall = 0 ;
ULONG ulNowInMsHigh = 0 ;
ULONG ulNowInMsLow = 0 ;
( VOID ) VOS_Tm_Now( &ulNowInMsHigh, &ulNowInMsLow ) ; /* 獲取當前的時間,以毫秒為單位,用64bits表示,
ulNowInMsHigh為高32位, ulNowInMsLow為低32位*/
if( ( 0 == ulPreCall ) || ( ulNowInMsLow >= (ulPreCall + TIME_INTERVAL) ) )
{
ulPreCall = ulNowInMsLow;
}
else
{
return ;
}
DO_Something();
return ;
}
答案:沒有判斷時間的高位,ulNowInMsLow溢位後將不能執行到DO_Something。
7.下面的程式碼中,函式Test執行完畢後,希望輸出1。請指出錯誤:
void VarInit(unsigned char *pucArg)
{
*pucArg = 1;
return;
}
void Test()
{
unsigned long ulGlobal;
VarInit(&ulGlobal);
printf("%lu", ulGlobal);
return;
}
答案:型別轉換錯誤。
8.請指出下面程式錯誤的地方:
#define BUFFER_SIZE 256
void Test(void)
{
char *str = NULL;
str = (char *)malloc(BUFFER_SIZE);
if(NULL == str)
{
return;
}
strcpy(str, "hello");
free(str);
if(NULL != str)
{
strcpy(str, "world");
printf(str);
}
return;
}
答案:引用了已經釋放的記憶體。
9.
#define OK 0
#define ERR 1
#define ERROR (-1)
#define BUFFER_SIZE 256
char *GetMemory(unsigned long ulSize)
{
char *pcBuf = NULL;
. pcBuf = (char *)malloc(ulSize);
if(NULL == pcBuf)
{
return ERROR;
}
return pcBuf;
}
void Test(void)
{
char *pszBuf = NULL;
pszBuf = GetMemory(BUFFER_SIZE);
if(NULL != pszBuf)
{
strcpy(pszBuf, "Hello World!/r/n");
printf(pszBuf);
free(pszBuf);
}
return;
}
答案:GetMemory函式的異常分支返回了-1,是一個非法地址。
10.下面程式用於輸出使用者輸入的字串。請指出其中的問題
#define OK 0
#define ERR 1
#define ERROR (-1)
#define BUFFER_SIZE 256
int GetMemory(char **ppszBuf, int num)
{
if( NULL == ppszBuf )
{
ASSERT(0);
return ERROR;
}
*ppszBuf = (char *)malloc(num);/*呼叫系統函式申請記憶體*/
if(NULL == *ppszBuf)
{
return ERROR;
}
return OK;
}
void Test(void)
{
char *pcStr = NULL;
if(OK == GetMemory(&pcStr, BUFFER_SIZE))
{
scanf("%s",pcStr);/*這裡假定BUFFER_SIZE足夠大,不會導致越界*/
printf(pcStr);
free(pcStr);
}
return;
}
答案:要採用printf("%s", szStr)的形式列印,否則如果輸入為%s, %d等形式可能會導致不可知現象。
11.下面程式把"hello"這個字串輸出,請指出其中的錯誤。
void Test(void)
{
char pcArray[10];
strncpy(pcArray,"hello",5);
printf("%s/n",pcArray);
return;
}
答案:strncpy沒有把中止符NULL寫入陣列中。
12.如下程式用於把"hello world"字串打印出來,請指出其中的錯誤:
void example(void)
{
char acColor[11];
strcpy(acColor,"hello world");
printf("%s",acColor);
return;
}
答案:空間不足,字串結尾還有'/0'。
13.如下程式用於把"系統備板工作異常"字串打印出來,請指出其中的錯誤:
void PrintErrInfo(void)
{
char acMsg[16];
strcpy(acMsg,"系統備板工作異常");
printf("%s",acMsg);
return;
}
答案:每個漢字佔兩個位元組,空間不足,字串結尾還有'/0'。
14.請指出下面程式的錯誤:
void Test(void)
{
char *szStr = (char *) malloc(100);
if(NULL == szStr)
{
return;
}
strcpy(szStr, "hello");
free(szStr);
if(NULL != szStr)
{
strcpy(szStr, "world");
printf(szStr);
}
return;
}
答案:使用了無效記憶體。
15.如下函式實現列印字串"hello world"的功能,請指出錯誤:
#define BUFFER_SIZE 256
void GetMemory(char *pszBuf)
{
if(NULL == pszBuf)
{
ASSERT(0);
return ;
}
pszBuf = (char *)malloc(BUFFER_SIZE);
return;
}
void Test(void)
{
char *pszBuf = NULL;
GetMemory(pszBuf);
if(NULL == pszBuf)
{
return ;
}
strcpy(pszBuf, "hello world/r/n");
printf("%s", pszBuf);
free(pszBuf);
return;
}
答案:函式要返回指標就需要傳進去指標的地址。
16.如下函式實現列印字串"hello world"的功能,請指出錯誤:
char *GetMemory(void)
{
char pcBuf[] = "hello world/r/n";
return pcBuf;
}
void Test(void)
{
char *pcStr = NULL;
pcStr = GetMemory();
if(NULL == pcStr)
{
printf("Can not get string!/r/n");
return;
}
else
{
printf("%s", pcStr);
}
return;
}
答案:要列印的字串存在於棧記憶體,可能不會正確列印。
17. 如下程式用於把"blue"字串打印出來,請指出其中的錯誤:
void PrintBLUE()
{
char pcBlue[] = {'b','l','u','e'};
printf("%s",pcBlue);
return;
}
答案:字串以'/0'結束。
18.下面程式用於輸出使用者輸入的字串。請指出其中的問題
#define OK 0
#define ERR 1
#define ERROR (-1)
#define BUFFER_SIZE 256
int GetMemory(char **ppszBuf, int num)
{
if( NULL == ppszBuf )
{
ASSERT(0);
return ERROR;
}
*ppszBuf = (char *)malloc(num);
if(NULL == *ppszBuf)
{
return ERROR;
}
return OK;
}
void Test(void)
{
char *pcStr = NULL;
if(OK == GetMemory(&pcStr, BUFFER_SIZE))
{
scanf("%s",pcStr);/*這裡假定BUFFER_SIZE足夠大,不會導致越界*/
printf(pcStr);
free(pcStr);
}
return;
}
答案:要採用printf("%s", str)的形式列印,否則如果輸入為%s, %d等形式可能會導致不可知現象。
19.下面程式把"blue"這個字串輸出,請指出其中的錯誤。
void PrintBLUE(void)
{
char* pcColor ;
char pcNewColor[5];
pcColor = "blue";
strncpy(pcNewColor, pcColor,4);
printf("%s",pcNewColor);
return;
}
答案:strncpy沒有把中止符NULL寫入陣列中。
20.#define BUFFER_SIZE 256
void GetMemory(char **ppszBuf)
{
if(NULL == ppszBuf)
{
ASSERT(0);
return ;
}
*ppszBuf = (char *)malloc(BUFFER_SIZE);
return;
}
void Test(void)
{
char *pszBuf = NULL;
GetMemory(&pszBuf);
strcpy(pszBuf, "hello world/r/n");
printf("%s", str);
free(pszBuf);
return;
}
答案:malloc記憶體後沒有判斷是否成功。
21. 請指出下面程式問題
#define MAX_LEN 256
unsigned char Array[MAX_LEN];
int main(int argc, char *argv[])
{
int i;
for ( i = 0; i <= MAX_LEN; i++ )
{
Array[i] = i;
}
return;
}
答案:當i等於MAX_LEN時,陣列越界。
22.請指出下面這段程式碼中的錯誤:
unsigned long FUNC_B ( unsigned long ulCount )
{
unsigned long ulSum = 0 ;
while( 0 <= ulCount )
{
ulSum += ulCount ;
ulCount--;
}
return ulSum ;
}
答案:unsigned long 永遠不小於0,為死迴圈。
23.請指出下面程式的錯誤:
void GetMemory(char **ppcChar, int iLength)
{
if(NULL == ppcChar)
{
return;
}
*ppcChar = (char *)malloc(iLength);
return;
}
void Test(void)
{
char *szStr = NULL;
GetMemory(&szStr, 100);
if(NULL != szStr)
{
strcpy(szStr, "hello");
printf(szStr);
}
return;
}
答案:沒有釋放記憶體。