SYMBOLIC CONSTANTS May 28, 2020 SYMBOLIC CONSTANTS Symbolic constants allows the programmer to define a name for a constant and use that name throughout the program. ...
2's complement: May 26, 2020 2's complement: The 2's complement of a given binary number X (=! 0) with integer part of n digits can be obtained as follows...
1's COMPLEMENT May 24, 2020 1's COMPLEMENT Suppose we have a binary number x having an integer part of n digits. Then ( b- 1) complement of the number x can b...
Computer Number System May 22, 2020 Computer Number System Number System is representation for a given number. Basically number system is of four type. 1. Decimal Number...
Operations On Pointers May 21, 2020 Operations On Pointers Just like variable, C allows us to perform several operations on the pointer variables. You can add or subtract...
Pointer to Array in C May 18, 2020 Pointer to Array in C Pointer to array is a pointer variable that points to an array. It is also known as array pointer for short. It i...
Pointers to Pointers May 17, 2020 Pointers to Pointers Since every variable declared in a program is assigned an address, similarly when a pointer variable is declared, ...