作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在考虑尝试特殊的控制台函数 cscanf() 和 cprintf(),但以下代码无法编译
#include<stdio.h>
#include<conio.h>
int main()
{
int a,b;
cprintf("Enter two integers\n");
cscanf("%d%d",&a,&b);
cprintf("%d+%d=%d",a,b,a+b);
return 0;
}
这是错误消息:
undefined reference to 'cscanf'
undefined reference to 'cprintf'
最佳答案
gcc
不包含非标准头文件 conio.h
或其声明的函数,当使用标准 C 时,并检查 scanf
> 实际上成功了,它看起来像这样:
#include<stdio.h>
int main() {
int a, b;
printf("Enter two integers\n");
if(scanf("%d%d", &a, &b) == 2) {
printf("%d+%d=%d\n", a, b, a+b);
} else {
puts("you failed to input two integers");
}
return 0;
}
关于c - 由于 cscanf() 和 cprintf() ,程序无法编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57758791/
我想用星号“*”画一棵圣诞树,最后我画了一棵。 问题是当我使用 textattr(130)“这个颜色是绿色闪烁”和 cprintf 函数给它上色时,树散落在整个屏幕上。 我画了一条竖线,看看cprin
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 已关闭 3 年前。 Improve
(1) 这是主函数(runproctest.c): #include "defs.h" void runproctest(void) { cprintf("testing runnable: tes
下面正在尝试的代码: #include #include #include int main(void) { char ch; do{ ch=getch(); cprin
我刚迁移到 Linux 一个月。我使用 Borland Turbo C 进行 C 编程,但其中一些函数在 GNU/Linux 中不起作用,因此寻求帮助。 这些是我想替换的一些功能: - gotoxy
我是一名优秀的程序员,十分优秀!