本文介绍了为什么(如何)我们可以使用char *来存储字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 嗨为什么这段代码有效?HiWhy this code works?char* ch="hello";cout<<ch; 我以为我们只能存储单个字符(char ch ='a'或'字符容器中的3'或'$')或ASCI编号(char ch = 65)。但是当我使用字符指针时,我可以在其中存储一个字符串。这怎么可能?还有其他我不知道的关于字符的内容吗?I thought we can only store single characters (char ch='a' or '3' or '$') or ASCI numbers (char ch= 65) in a character container. But when I use a character pointer, I can store a string in it. How is this possible? And is there other things I don't know about chars?推荐答案 这篇关于为什么(如何)我们可以使用char *来存储字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-31 06:54