0
Whats missing in this program to run?
3 Antworten
+ 1
#include <stdio.h>
double main() {
double a,b,total;
printf ("input");
scanf("%lf%lf",&a,&b);
total = a+b;
printf("output = %1lf",total);
return 0.0;
}
0
Now it will work u missed comma in printf statement
0
thanks 👌