摘要: 1 #include<stdio.h> 2 //2020年11月23日20:58:58 3 int main(void) 4 { 5 double * p; 6 double x = 66.6; 7 8 p = &x;//x占8个字节,1个字节是8位,1个字节1个地址, 9 //p存放的是第一个字节 阅读全文
posted @ 2020-11-23 21:03 Connor_Jiao 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 int main(void) 3 { 4 /* 5 int i; 6 int j; 7 printf("input number1:\n"); 8 scanf("%d",&i); 9 printf("input number2:\n"); 10 scanf 阅读全文
posted @ 2020-11-23 09:31 Connor_Jiao 阅读(733) 评论(0) 推荐(0) 编辑