Computers do not understand English language. It can only understand machine code, a binary stream of 1s and 0s. Learning…
Usually you can see these "include" directive at the very top of your source code. It's called a preprocessor directive.…
Lets write our first C program - the typical "Hello World!" program. In this video tutorial lets learn the structure…
There are many IDE(Integrated Development Environment) available for C programming language, but I would prefer using Code::Blocks or Visual Studio…
Let's know a little bit of history of C programming. Many of you may not be interested in knowing the…
C is a general-purpose, procedural computer programming language. C reduces the gap between high level language and low level language.…
In this video tutorial we shall see how we can search for a number in an array in linear fashion.…
We assume that a[0] has first biggest and a[1] has the second biggest value. Now check if this assumption is…
First we have to assume that a[0] is biggest. Now store the value of a[0] inside a variable called big.…
In this video tutorial we illustrate the bubble sort algorithm and also see how to write it in C programming,…