Q. Output is
Code:#include <stdio.h>
int main() {
int a = 10;
double b = 5.6;
int c;
c = a + b;
printf(“%d”, c);
}
β
Correct Answer: (B)
15
#include <stdio.h>
int main() {
int a = 10;
double b = 5.6;
int c;
c = a + b;
printf(“%d”, c);
}
You must be Logged in to update hint/solution