为什么在打印数组的单个值时要使用百分号 %?

huangapple go评论62阅读模式
英文:

Why this % when printing a single value of array

问题

printf("%d", marks[0][0];

Output
90%

I was printing a 2d array and this happened

英文:
printf("%d" , marks [0][0];

Output
90%

I was printing a 2d array and this happened

答案1

得分: 4

这个%很可能是命令提示符。

尝试使用

printf("%d\n", marks[0][0]);

以便将90(或应该打印的任何值)显示在单独的一行上。

英文:

That % is most likely the shell prompt.

Try using

 printf("%d\n", marks[0][0]);

so that the 90 (or whatever value should be printed) is displayed on a line of its own.

huangapple
  • 本文由 发表于 2023年2月26日 21:23:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/75572284.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定