Sunday, November 3, 2013

Multidimensional Array in C Programming

,
Array is a variable that can hold more than one value of same type. You specify which of the several values you're referring to at any given time by using a numeric subscript. (Arrays in programming are similar to vectors or matrices in mathematics.) Arrays are of two types: One-dimensional arrays Multidimensional arrays Multidimensional arrays : When we create arrays of arrays known as multidimensional arrays. C Programming provide to create multidimensional...
Read more →

One Dimensional Array in C Programming

,
Array is a variable that can hold more than one value of same type. You specify which of the several values you're referring to at any given time by using a numeric subscript. (Arrays in programming are similar to vectors or matrices in mathematics.) Arrays are of two types: One-dimensional arrays Multidimensional arrays One Dimensional Array : Size of array defines the number of elements in an array. Each element of array can be accessed and used...
Read more →

Saturday, November 2, 2013

Null Pointer in C Language

,
A Pointer is variable which contains the address in memory of another variable.value of a pointer variable is a pointer to some other variable. There is one other value a pointer may have: it may be set to a null pointer. A null pointer is a special pointer value that is known not to point anywhere. What this means that no other valid pointer, to any other variable or array cell or anything else, will ever compare equal to a null pointer. A void pointer...
Read more →

Wednesday, October 13, 2010

Graphics in C Language Tutorial

,
C and C++ Very Useful Language for Creating Application and programs. It provide a platform for developing a application with many functionality. But we know that mostly users attract Interface design. Design of application gives easy to use for users, he can user any application easily by UI. All programmings language can easily implement with graphic eg: C,C++,PHP,.net etc. Here we are learning about Graphic in C language with example, graphics.h library...
Read more →

What is Call By Value in C

,
In C Programmings we have different ways to parameter passing schemes such as Call by Value and Call by Reference. Call By Value:- In the Call By Value the function is to be called by passing the value in the parameter of a function called. By default, C programming language uses call by value method to pass arguments. There are the two type of a arguments which are passed in the function. 1) Formal Arguments:- Formal Arguments is the parameters which...
Read more →