討論串[問題] float *r => int
共 2 篇文章
首頁
上一頁
1
下一頁
尾頁
內容預覽:
在32 bit little endian的環境上..... 某個memory address裡依序存入了:. 0x00100000: 0xE7 0x03 0x00 0x00. p是short ptr, 指到了0x00100000. q是int ptr, 指到了0x00100000. r是float
(還有1581個字)
內容預覽:
在下最近練習指標的時候遇到一個問題.... #include<stdio.h>. int main(). {. int a=999;. short int *p;. int *q;. float *r;. double *s;. p=(short int*)&a;. q=&a;. r= (float
(還有154個字)
首頁
上一頁
1
下一頁
尾頁