7:14, in c 語言。溢位: 當數值 overflow 時,因為 ( 環 或 補數 ) 的關係,會跑出 非預期的表示法。。 data_type type data_cells_storage illustration 短整數 short int 2* bytes(8*2==16 bits) short int 32 整數 int 4* cells int 32 長整數 long int 8* cells long int 32 字元 char 1 cell char '3' 單精度 float 4* cells float 3.2 倍精度 double 8* cells double 3.2 無 void ?
功德无量啊!讲的特别细致,声音又好听,爱了
7:14, in c 語言。溢位: 當數值 overflow 時,因為 ( 環 或 補數 ) 的關係,會跑出 非預期的表示法。。
data_type type data_cells_storage illustration
短整數 short int 2* bytes(8*2==16 bits) short int 32
整數 int 4* cells int 32
長整數 long int 8* cells long int 32
字元 char 1 cell char '3'
單精度 float 4* cells float 3.2
倍精度 double 8* cells double 3.2
無 void ?
#include
int main() {
long int x=32;
printf("long int:%d
",sizeof(x)) ;
return 0;
}
你是我見過最會教人的知識性youtuber
每個資料型別的記憶體佔輛
sizeof
access "未指定 " value 的 variable ,大部分 by default 是 " undefined " 、" invalid ",所以,一開始必要做
initialization,給定初始值,不然會發生,run time error。。
讚!👍 太晚發現這個頻道了
請問可以提供投影片嗎?謝謝~~
這個有點困難=
聽完了還是要再聽一次@@
多實際操作再回來看這一篇就容易懂了,不然就先從python開始會比較好!
我是先學完 Python 再學 C,真的有差。
先學 Python 再學 C 更快進入狀況。
@@whssss 先學C在學python應該比較快
@@jochen-f5d 先學C會很痛苦,python適合初學者
hope you can upload the Python Course asap!
完全打不出 查詢sizeof(longint)的編輯碼@@ 誰可以救我
#include
int main(){
int longint;
printf("long int:%d.
",sizeof(longint);
return 0;
}
感覺這樣打還是在看 int的size
printf("sizeof(short) = %d
", sizeof(short));
printf("sizeof(int) = %d
", sizeof(int));
printf("sizeof(long) = %d
", sizeof(long));
printf("sizeof(long long) = %d
", sizeof(long long));
printf("sizeof(size_t) = %d
", sizeof(size_t));
printf("sizeof(off_t) = %d
", sizeof(off_t));
printf("sizeof(void *) = %d
", sizeof(void *));
return 0;
#include
int main(){
printf("long int: %d
",sizeof(long int));
return 0;
}
#include
int main(){
printf("long int: %ld
",sizeof(long int));
return 0;
}
long int的format specifier是%ld
#include
int main() {
long int x=32;
printf("long int:%d
",sizeof(x)) ;
return 0;
}
没有 bool 吗?
thanks for your sharing
我嘗試python的寫法 int1,int2 = int2,int1 不行
C語言跟python不一樣
空隙大小為0位元,用途已知
目前已知功用為關閉警告消息
2024/7/14簽到
辛苦老師了
這個難啊!
Good!
Good!
大小聲變太快,聽很辛苦,而且還常走音
耳朵不好去看醫生吧
精神有問題去看醫生吧
走音不是重點吧,去看看標題再看看你在學甚麼
你是近來學唱歌嗎?還走音...
真的去看耳科吧不然去挖個耳朵
以為這是歌唱頻道?
感谢
影片中 %d會有warning,大家如果想要自己練習,可以參考看看下面寫法
#include
int main(){
printf("long int: %llu
",sizeof(long int));
return 0;
}