Posted inProgramming & Data Structures Declaring a pointer Posted by admin August 14, 2021 Like variables, pointers have to be declared before they can be used in your program.…
Posted inProgramming & Data Structures What is a Pointer? Posted by admin August 14, 2021 In simple words, a pointer is an address. It is a derived data type that…
Posted inProgramming & Data Structures How a Preprocessor works in C? Posted by admin August 14, 2021 Compiling a C program – Behind the Scene A Preprocessor is a system software (a…
Posted inProgramming & Data Structures Array Operations Posted by admin August 14, 2021 The array module of Python has separate functions for performing array operations. This is a…
Posted inProgramming & Data Structures What are Arrays? Posted by admin August 14, 2021 An array is a data structure for storing more than one data item that has…
Posted inProgramming & Data Structures Functions in C/C++ Posted by admin August 14, 2021 A function is a set of statements that take inputs, do some specific computation and…
Posted inProgramming & Data Structures What are Arrays? Posted by admin August 14, 2021 An array is a data structure for storing more than one data item that has…
Posted inProgramming & Data Structures Control Statements Posted by admin August 14, 2021 Control statements enable us to specify the flow of program control; ie, the order in which…
Posted inProgramming & Data Structures Conditional Statements : if, else, switch Posted by admin August 14, 2021 Conditional statements help you to make a decision based on certain conditions. These conditions are…
Posted inProgramming & Data Structures Conditional Statements Posted by admin August 14, 2021 Definition: A conditional statement, symbolized by pq, is an if-then statement in which p is a hypothesis and q…