Arithmetic Operators in C
C language provides five main arithmetic operators which include the addition (+), subtraction (-), multiplication (*) and division (/) operator.
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 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 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 more