Decision Making in CThere come situations in real life when we need to make some decisions and based on these decisions, we decide what should we do next…Sep 30, 2022Sep 30, 2022
INPUT AND OUTPUT FUNCTIONThere are a number of I/O standard functions in c, based on the data types. The I/O function are classified into two types (a). formatted…Sep 29, 2022Sep 29, 2022
Bitwise Operators in CC supports a set of bitwise operator as listed in table . C supports six bit operators . these operators can operate only on an integer…Sep 28, 2022Sep 28, 2022
LOGICAL OPERATORSLogical operators for performing logical operations of the given relational expressions or the variables. The logical operators in C are…Sep 27, 2022Sep 27, 2022
Assignment Operator in CThe assignment operator is used to assign the value, variable and function to another variable. Let’s discuss the various types of the…Apr 4, 2022Apr 4, 2022
Relational Operators in CThe relational operators are used to compare two of the available values to understand what relationship the pairs of values share. For…Mar 31, 2022Mar 31, 2022
Increment and Decrement Operators:Operators are the predefined symbols of the C library, and it is used to perform logical as well as mathematical operations to the…Mar 29, 2022Mar 29, 2022
Arithmetic Operators in CMost C programs perform calculations using the C arithmetic operators. Note the use of various special symbols not used in algebra. The…Mar 26, 2022Mar 26, 2022
Escape SequencesThe printf() and scanf() statements follow a combination of characters of characters called as escape sequences. Escape sequence are…Mar 25, 2022Mar 25, 2022
STRUCTURE OF A C PROGRAMEvery C program consists of a number of building blocks known as functions. Each function defined in C performs a specific task. A function…Mar 24, 2022Mar 24, 2022