C - Constants & Literals Kamran Shaikh 11:52 Add Comment Edit Constants refer to fixed values that the program may not alter during its execution. These fixed values are also called literals . Const... Read More
C - Variables Kamran Shaikh 11:47 Add Comment Edit A variable is nothing but a name given to a storage area that our programs can manipulate. Each variable in C has a specific type, which de... Read More
C - Data Types Kamran Shaikh 11:31 Add Comment Edit Data types in c refer to an extensive system used for declaring variables or functions of different types. The type of a variable determine... Read More
C - Basic Syntax Kamran Shaikh 11:21 Add Comment Edit You have seen the basic structure of a C program, so it will be easy to understand other basic building blocks of the C programming languag... Read More