c-course/c-basic/ab_c.c

14 lines
226 B
C
Raw Normal View History

2024-06-30 15:36:03 +03:00
#include <stdio.h>
int main()
{
double a, b, c;
printf("type your number a:");
scanf("%lf", &a);
printf("type your number b:");
scanf("%lf", &b);
c = a + b;
printf("c is %f\n", c);
return 0;
}