User Defined Data Types in C
C language allows a programmer to create user defined data types. It provides 2 keywords to do so; typedef and
Read moreC language allows a programmer to create user defined data types. It provides 2 keywords to do so; typedef and
Read moreAfter a variable is declared it may be required to initialize it. Initialization of a variable means assigning some value
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 Integer data type is used to specify a variable that will contain only integer values, 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 more