与 putchar() 相反?
是否有与 putchar() 相反的方法,您可以传递 ascii 字符,然后它将输出数值?谢谢。
Is there an opposite to putchar() where you can pass the ascii character and it will output the numerical value? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
printf("%d\n", c);
printf("%d\n", c);
我不确定你说的是哪种语言。在“C++”中,您可以只传递 (int) ch ,它应该返回数字 ascii 值。
I am not sure which language you are talking. In 'C++', you could just pass (int) ch which should return the numeraical ascii value.