Differences between single-quotes and double-quotes in C

前端 未结 5 432
梦如初夏
梦如初夏 2021-01-29 16:39

Recentely I have seen that if I use printf with \'foo\' I get a warning.

printf(\'numero\');

warning: character con

5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-29 17:09

    In c, '' is used for character constants and "" for string, unlike python where both can be used interchangeably.

提交回复
热议问题