Type Conversions in Expressions in C
C expressions may contain many variables and constants which may be having different data types. However, when they are evaluated
Read moreC expressions may contain many variables and constants which may be having different data types. However, when they are evaluated
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 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 more