摘要: #include <stdio.h> int main(void) { char* i = (char*)0x1111; printf("size = %d %d\n", sizeof(i), sizeof((char*)0x11)); // size i = 8 bytes, size(char* 阅读全文
posted @ 2024-06-18 15:06 stitchCat 阅读(8) 评论(0) 推荐(0)
摘要: // Online C compiler to run C program online #include <stdio.h> typedef union { char c; int i; }u_t; int main() { u_t u; u.c = 1; printf("u.c = %d, si 阅读全文
posted @ 2024-06-18 14:43 stitchCat 阅读(13) 评论(0) 推荐(0)
摘要: // Online C compiler to run C program online #include <stdio.h> typedef struct bits { unsigned char b0 : 1; unsigned char b1 : 1; unsigned char b2 : 1 阅读全文
posted @ 2024-06-18 14:34 stitchCat 阅读(16) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2024-06-18 13:56 stitchCat 阅读(0) 评论(0) 推荐(0)
摘要: Reference: 内存和固态硬盘哪个快?Flash和ROM RAM是一个东西吗?RAM和ROM的区别是什么? 入理解闪存!固态硬盘如何存储一位数据?NAND FLASH是怎么擦除和写入的?FLASH的工作原理! 你的U盘,其实是个监狱|flash存储原理:固态硬盘,U盘,SD卡 阅读全文
posted @ 2024-06-18 08:43 stitchCat 阅读(8) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2024-06-18 08:42 stitchCat 阅读(0) 评论(0) 推荐(0)