我正在尝试在我的 Mac 上运行一个简单的 C 程序。它工作了一段时间,但突然 scanf 停止工作。我基本上想读入一个整数值并输出输入的内容。无论我输入的整数如何,程序都会输出 0。我已经尝试了这里的建议,但没有任何效果。我已经尝试在终端和 xcode 中运行该程序,但仍然没有。有任何想法吗?
#include <stdio.h>
int main(){
int numberOfElements = 0;
scanf("Number of elements: %d",&numberOfElements);
printf("%d\n",numberOfElements); //keeps returning 0 no matter the number I enter
return 0;
}