Relational Operators in C
C language provides six relational operators which include the greater than (>), greater or equal (>=), lesser than (<), lesser
Read moreC language provides six relational operators which include the greater than (>), greater or equal (>=), lesser than (<), lesser
Read moreC language provides five main arithmetic operators which include the addition (+), subtraction (-), multiplication (*) and division (/) operator.
Read moreAn Operator is a symbol in C language that performs some mathematical, logical, etc. operations on some data. The data
Read moreA storage class defines the scope (visibility) and life time of variables and/or functions within a C Program. These specifiers
Read moreThe functions which fall in this category just provide bare bone functionality to read and write a character or string
Read moreThe functions which fall in this category provide a convenient way to format the input and/or output data as per
Read moreInput/output is used for interfacing with outside world. Every programming language must provide a means to input some data into
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 more