Sorry! Posting Assignment is allowed only for commercial accounts.
#include<stdio.h>main() { int a = 1; float b = 1.3; double c; c = a + b; printf("%.2lf", c);}