DATA TYPE IN C In this post, We will discuss data type in c programming. In C programming language we use variable to store a value for some computation, In C programming every variable has a data type that determines which type of data a variable will store. In this particular section, we will only discuss data types which are frequently used in competitive programming. Basic Data Types in C Integer Types Long Type Long Long Type Floating-point Types Double Type Char Type Integer Data Type in C it has 2-byte storage Long Data Type in C it has 4-byte storage Long Long Data Type in C it has 8-byte storage Floating-point DataTypes C It has a 4-byte storage size and Precision value is up to 6 decimal place Double Data Type in C It has an 8-byte storage size and Precision value is up to 15 decimal place Char Data Type in C it has 1-byte storage Please write comments if you find anything incorrect, ...