In this blog I m going to tell some basic notes about C language. First I will start some basic questions about C later in next blog I cover rest of the things.
What is C? give its examples of implementation.
C is used for development of computer software and applications, system programming, games, web-development and more.
C language was developed by Dennis M. Ritchie at the Bell Telephone Labortories in 1972.
It is a powerful and flexible language which was first developed for the programming of Unix Operating system.
C is one of the most widely used programming language.
C programming language is known for its simplicity and efficiency.
Now Lets talk about some advantages of learning C language.
1) Easy to learn
2)Versitile language which can be used in both applications & technologies.
3)Mid-Level Programming Language
4)Structured Programming Language
Working of C language
C compiler is a software that translates human-readable C language code into machine code or an intermediate code that can be executed by a computer central processing (CPU).
Now let's see how to write C Programming
#include<stdio.h>
int main(){
printf("Hello world ! I don't give bug");
return 0;
}
Output:
Hello world ! I don't give bug