Programming introduction || Programming in C || Mother language of Programming



Programming in C || Mother language of Programming

Programming is the best way to solve any kinds of problem very easily. Programming means  a set of instruction which is written step by step. we can make a software by using some of programming. This article I will tell you about the mother language of programming.
Programming C is the mother language of programming. Which is developed by Dennies Ritchie in Bell laboratory in 1972. Programming C is also called a Mid level language. Because It's contains the features of both high level language and low level language. So its called a mid level language. Simply It is a high level language.

Apply of C Programming......

1. Console Mode Application
2. GUI- Graphical User Interface Application

We know that's windows operating system has designed by using C programming. 


BASIC STRUCTURE OF C

C programming structure is very simple.We will use a text editor for C programming. We can use Code Blocks or Turbo C++ text editor. I think Code block editor is the best for C programming.  C programming Hello World Program code is given bellow:

#include<stdio.h>
#include<conio.h>
int main()
{
    printf("hello world");
    return 0;

}
After writing this code on code blocks. Then we will run it. we can simple run the code by the pressing f9 key from the Keyboard.




When we will run the code. we will get output in console: hello world
It's a very simple code. you can write any kinds of C Program by using code blocks and make your life style more easy. 

I will tell you more about programming in my next article. You can get more information in video from my you tube channel. My youtube channel link is given below.

TECH BRAIN BD
You will get all kinds of technical videos from my channel. I make tutorial on Programming, web design and development, Graphics design, Software development and many more. So always stay with me by visiting my website and subscribe my youtube channel.

Thanks for visiting my website and reading my article. 

Post a Comment

1 Comments