作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么我会收到此错误?请帮忙...我不明白!看来我有非法访问,但我无法弄清楚...
int main ()
{
int repeat = 1;
int comamnd = 0;
do {
printf ("\n\tSelect:\n1) Login\n2) Quit\n\nWhat's the command? ");
scanf ("%d", command);
if (command == 2)
return 0;
else;
if (command == 1)
{
int ok = Login ();
if (ok == 1)
repeat = 0;
};
} while (repeat == 1);
return 0;
}
最佳答案
scanf ("%d", command);
您将零传递给 scanf
作为读取输入的位置。你想要:
scanf ("%d", &command);
如果您的编译器没有警告您,您应该切换到更好的编译器。
关于c - C 中的段错误(核心转储)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26538247/
我正在为我的应用程序使用 Tank-Auth。我唯一的问题是激活和重置帐户密码。 用于登录、注册、注销;我对这些代码没有问题; $route['login'] = "/auth/login"; $ro
我是一名优秀的程序员,十分优秀!