学习指针1
关键词1.字符指针char* a;2.数组指针数组名指向首元素的地址3.指针数组int* a[10]; //存放指针的数组 概念1.指针的大小固定,4或8个字节2.利用指针创建的字符串,为常量字符串 通过今天学习可以解决的问题面试题 12345678char* arr1[]="abcdef";char* arr2[]="abcdef";char* if(arr1==arr2){ printf("hahaha");}else{ printf("hehehe");} 输出hehehe 12345678char* p1="abcdef";char* p2="abcdef"; if(p1==p2){ printf("hahaha");}else{ printf("hehehe");}return 0; 输出hahaha 利用...
system
day oneThis day I want to modify a typical little game.Snake
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
