What is Deep Web? The deep web is just like it sounds — below the surface and not completely dark. …
SBI clerk result 2018 declared, here’s direct link to check
The result of SBI clerk prelims examination (Junior Associates – customer support and sales) 2018 was declared on Tuesday on …
How To Help Children In Homework Habits
Homework is designed to help students reinforce key concepts, process and solidify new information, provide time for extra practice of …
Pointers Expression In C Language
Pointers Expression:- Like any other variables, pointer variable can be used in expressions. In a program all the following operations …
Memory And Pointer And The Indirection Operator In C Language
Pointers and the indirection operator:- The two fundamental operators used with the pointers are: 1. address operator & 2. indirection …
Concept Of Pointers In C Language
Introduction:- A pointer is a special variable that is used to store the address of some other variable. A pointer …
Recursion In C Language
Recursion A function is called recursive if a statement within the body of a function calls the same function. Sometimes …
User Defined Functions In C Language
User Defined Functions Functions defined by us are known as User Defined Functions. main( ) function is also user defined …
Types of Functions In C Language
Types of Functions:- 1. Library Functions: – Functions defined previously in the library are called as library functions. #include<math.h> main( …
Argument Passing Mechanism: Call By Value,Call By Reference In C Language
Argument Passing Mechanism:- (i) Call by value:- When arguments are passed by value then the copy of the actual parameters …