分配变量时“初始化器元素不是编译时常量”

问题描述 投票:0回答:1

我正在尝试运行此代码,但在终端上它显示“初始化器元素不是编译时常量:

#include <cs50.h>
#include <stdio.h>
int main(void)
int i = get_int ('first population: ')
int j = get_int ('second population: ')
c compiler-errors initializer
1个回答
0
投票

您的代码错误。仔细阅读学习材料的前几章:

你想要这个:

#include <cs50.h>
#include <stdio.h>

int main(void)
{
  int i = get_int ('first population: ');
  int j = get_int ('second population: ');
  ...
  more code
  ...
}
© www.soinside.com 2019 - 2024. All rights reserved.