gpt4 book ai didi

c - 简单的c程序不打印输出

转载 作者:太空宇宙 更新时间:2023-11-04 03:36:52 24 4
gpt4 key购买 nike

<分区>

我有一个简单的c程序

#include <stdio.h>

int add(int, int);
int add (int a, int b) {
return a+b;
}

int main(void) {
int a, b, c;

printf("Enter the 1st number ");
scanf("%d",&a);
printf("Enter the 2nd number ");
scanf("%d",&b);
c = add(a, b);
printf("The value is %d ", c);
return (0);
}

我正在用 cc main.c 编译程序当我使用 ./a.out 运行程序时
我在控制台中没有得到任何输出。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com