Programs to understand the basic data types and I/O // Program to show the use of basic datatypes #include<stdio.h> void main() { int a; float b; double c; long double sum; char d; clrscr(); printf("Enter the values of a,b and c: \n"); scanf("%d%f%lf",&a,&b,&c); sum = a + b + c; ...