Declaration of a Variable in C
All the variables that are to be used in a program must be declared first. The declaration of variable means
Read moreAll the variables that are to be used in a program must be declared first. The declaration of variable means
Read moreThe Character data type is used to specify a variable that will contain characters from ASCII table like ‘A’, ‘%’,
Read moreThe Floating Point data type is used to specify a variable that will contain real numbers, i.e. any positive or
Read moreThe wide variety of data types supported by C language can be classified into 3 classes: 1. Primary Data Types
Read moreVariables are a way of reserving memory to hold some data and assign names to them so that we don’t
Read moreA Variable represents some memory location which is used to store some value. Unlike constants, a variable may take different
Read moreConstants are those tokens in C language whose value is fixed and does not change during the execution of a
Read moreIdentifiers are user-defined tokens used to name variables, functions, etc. An identifier consists of a sequence of letters and digits.
Read moreKeywords are those tokens or words whose meaning are already defined within the C language and cannot be changed. As
Read moreThough C language has rich set of features and have enormous advantages, however it suffers from some disadvantages. These include:
Read more