如何在C shell中打开包含单个数字的文件
我需要使用 c shell 打开一个文件。该文件包含一个整数,我需要将其放入变量中,增加它并放回文件中。意思是,如果文件包含数字 5,我需要在程序运行后该文件包含数字 6。有什么建议吗?
I need to open a file using c shell. The file contains a single integer, and I need to put it into a variable, increase it and put back into the file. Meaning, if the file contains the number 5, I need, after the program runs, that the file contains the number 6. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
@
命令将其计算为数值表达式。You can use the
@
command to evaluate it as numeric expression.或者这样:(
那些是反引号)。
Or this:
(those are backquotes).