您好,登錄后才能下訂單哦!
關(guān)于二進(jìn)制的一個(gè)題目
猜測(cè)下面count的個(gè)數(shù)???
// test23d.cpp : 定義控制臺(tái)應(yīng)用程序的入口點(diǎn)。
//
#include "stdafx.h"
#include<string.h>
int _tmain(int argc, _TCHAR* argv[])
{
char a[1000];
int i;
int count = 0;
for (i = 0; i < 1000;i++)
{
a[i] = -1 - i;
if (a[i]=='\0')
{
break;
}
printf("%c\n",a[i]);
count++;
}
printf("%d\n",count);
//printf("%d\n",strlen(a));
/*char a = NULL;
a = -129;
printf("%d,%c\n",a,a);*/
getchar();
return 0;
}
看懂這張圖,就知道count的數(shù)目了
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。