Primary DataType
ANSI C language provides 3 types of data types: Primary Data type: Derived Data type : User-defined Data type: 1] Primary data-type: All c compilers support five fundamental datatypes namely integer (int) , character (char) , floating-point (float) , double-precision floating-point (double) , void (void) .Many of them also offer extended datatypes such as long int and long double . character - keyword used is char integer - keyword used is int floating-point - keyword used is float double-precision floating-point - keyword used is double void(valueless) - keyword used is void Size and range of datatypes on 16-bits machine:- data types size(in bits) range char 8 –128 to 127 int 16 –32768 to 32767 float 32 1.17549 × 10 –38 to 3.40282 × 10 38 double 64 2.22507 × 10 –308 to 1.7...