Basics of Pointers

Basics of Pointers Pointer is a very fundamental and important concept in programming, but a lot of beginner programmers find it difficult to understand pointers. So, in this lesson we’ll try to demystify pointers we will start with basics of pointers. And all you need to know to understand this lesson, is how to write …

Continue reading ‘Basics of Pointers’ »

what is a variable and how to declare variable in C Programming

In this tutorial we’re gonna see, what is a variable and how to declare variable in C, how we can assign the value to that variable and how we can retrieve the values from that variable. what is a variable and how to declare variable in C Programming ? A variable is a name given to …

Continue reading ‘what is a variable and how to declare variable in C Programming’ »

Write First Program in C Language

Write First Program in C Here we are going to write first program in C First go and open up your dev c++ compiler and go to file, new, source file ( See below image). So its gonna open up a blank file, Go to this File then save as to anywhere in the computer …

Continue reading ‘Write First Program in C Language’ »

Constants Variables and Keywords in C programming

Alphabets, Numbers and Special symbols like underscore are combined to form constants variables and keywords in C programming. Constants Variables and Keywords in C programming Constants A constant as the name indicates is an entity that doesn’t change. We can classify the constants in to integer constants, real constants and character constants. An integer constant …

Continue reading ‘Constants Variables and Keywords in C programming’ »

How C Programming Language Works?

Welcome to the new chapter on the C programming language. In the previous videos we have learnt about the computers and the C programming language and in this post we are going to see all the steps involved from writing a C program to generating an executable file from that C program that is the …

Continue reading ‘How C Programming Language Works?’ »