Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

Data Types in C

In some of our tutorials in the beginning, I told you about the three primary data types which are used in C language. Today I will introduce you to some variations in these primary data types in C. We can make unlimited data types as per our requirement in C. So C language is quite …

Data Types in C Read More »

Recursion in C

In the last tutorial I told you about the function calls i.e. call by value and call by reference. Today I will tell about the last advance feature of function i.e. recursion in C. So lets straight away starts it with a simple example. Recursion in C #include<stdio.h> void crashp(); int main() { crashp(); return …

Recursion in C Read More »

Pointers in C Programming

Today I will not introduce you to any advance feature of function. Before proceeding further to our next tutorial about call by value and call by reference, it is compulsory to learn the basic concept of pointers. It is used in the advance feature of function that is call by reference. Pointer is one of …

Pointers in C Programming Read More »