Simple and Compound Statements in C
A Statement is the smallest standalone element of a programming language which in itself is collection of tokens of the
Read moreA Statement is the smallest standalone element of a programming language which in itself is collection of tokens of the
Read moreError is a condition either during compilation or execution of a program which if not fixed can halt compilation or
Read moreC is a case sensitive programming language which means in C two variables named x and X will have different
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 more