Miscellaneous Operators in C
C language some non-conventional operators like ternary conditional operator (?:), sizeof operator, comma operator (,), pointer operators (& and *)
Read moreC language some non-conventional operators like ternary conditional operator (?:), sizeof operator, comma operator (,), pointer operators (& and *)
Read moreC language provides one main assignment operator (=) which assigns to a variable on its LHS the outcome of some
Read moreC language provides six bitwise operators which for manipulation of data at bit level. These operators are used to perform
Read moreC language provides three logical operators which include the logical AND (&&), logical OR (||) and logical NOT (!) operator.
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 more