Author: Editorial Team
Type Casting and Conversion in C
Type Casting and Conversion in C In a programming language, the expression contains data values of similar datatype or different datatypes. When the expression contains similar datatype values then it is evaluated without any problem. But if the…
Read More »C Operator Precedence and Associativity
C Operator Precedence and Associativity What do you mean by Operator Precedence? Operator precedence is used to determine the order of operators evaluated in an expression. In c programming language every operator has precedence (priority). When there…
Read More »C Expressions
C Expressions What does an expression mean? A set of symbols is used to perform any calculation\evolution or to frame any condition to perform the task in any of the programming language . These set of symbols makes…
Read More »C Operators
C Operators . * An operator is a specific symbol that instruct to the compiler to perform mathematical or logical operations. **An operator is a symbol used to perform mathematical and logical operations in a program. *** C…
Read More »C Input Functions
C Input Functions C programming language provides built-in functions to perform input operations. The input opearations are used to read user’s input from keyboard. C language provides us the following built-in input functions… scanf() getchar() getch() gets() fscanf()…
Read More »C Output Functions
C Output Functions As we know that ‘C’ is a programming language. It is well known and very popular entire world, That is why because, it provides built-in functions to perform output operation. The output operations are used…
Read More »C Storage Classes
C Storage Classes In C programming language, storage classes are used to define things like storage location (whether RAM or REGISTER), scope, life time and default value of a variable. In C programming language, memory of variables is…
Read More »C Constants
C Constants In C language, a constant is similar to the variable but constant holds only one value at the time of program execution. That means, once a value is taken to the constant, than it can’t be…
Read More »C Variables
C Variables In c programming language, “Variables’ are the named memory locations where user can store different types of values of same datatype during the execution of program. That means, variable is a particular name given to a…
Read More »C Datatypes
C Datatypes Data used in c program is classified into different types based on its properties. In c programming langauge, datatype can be defined as a set of values with similar characteristics. All the values in a datatype…
Read More »