本文介绍了"'之间'和&QUOT差异; C的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! Recentely我已经看到,如果我使用的printf 与'富',我得到一个警告。 的printf(NUMERO'); And when I use "" I don't get any warnings printf("numero");So, what's the difference between '' and ""? 解决方案 In c, '' is used for character constants and "" for string, unlike python where both can be used interchangeably. 这篇关于"'之间'和&QUOT差异; C的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-19 02:45