Tuesday, August 7, 2018

Basic Introduction of C Programming Language

Basic Introduction of C Programming Language, Its a Starting point of your Programming journey, So Let's begin.

C is powerful programming language, It is a general-perpose Programming language, C is fast, portable and It is available to all the platforms, It is also used for wide  range of application from operating system like windows and iOS software that is used for creating 3D movies.

C programming is a highly efficient, C programs source code written in one system works on another operating system without changes. It is a main reason behind the success of C, It makes C very popular in Programming world. 

If you are new in Programming, It's good to start with C, C is also a procedural language.

Feature of C :

  • C programs are Fast :
  • Standard C programs are Portable:
  • C programs use of Modularity :
  • C is a Statically typed Language.
  • General Purpose. 

Should you learn C or not ?

I think you must learn C, Because C programming gives you a basic concept of programming, C will learn you how computer works, C will gives you a basic knowledge of working environment of Computer how computer works with Operating System.

If you don't know C, You actually don't know what are you doing as a programmer, C programming language gives you a opportunity to work on thousands of open source projects that simply impact on millions of people in this world.

Now Let's Start :

You can download any Compilers for C Programs You can download Code blocks, DevOps, Turbo c++ etc.

Few of the links given below you can download suitable Compiler according to you MindSet click the given links below 
Turbo C++
Code Blocks

Turbo C++ :
Search Turbo c++ on Google and click the Turbo C++ official website click download button for downloading when downloading is finished and open it and install it.

Code Blocks :
Search codeblocks on Google and click on the official website of Code Blocks and download it and install it.


After install the compiler successfully Lets Start writing Programs in C language.

Your First C Program :

#include<stdio.h
void main()
{
        printf("Hello World!");

}
Definitions :

  • #include<studio.h> is a header file, you must include it, It's a mandatory.
  • void main() : is a main method, when you run any C program Compiler always searching a main method in your C program.
  • { } : curly brackets, It's your statements should be inside the curly brackets ({ Here }).
  • printf : stands for printing the statements on the output window. 

Good Luck for your Programming journey in C Programming Language.

Thanks for reading...

3 comments:


  1. Best Blog with simplicity

    ReplyDelete
  2. Content of this blog is unique and simple, easy to understand. Rich content Thanks Keep it up with your unique style I love it

    ReplyDelete
  3. Easy and useful information. I m biggener in programming thanks for this

    ReplyDelete