What is C Programming?
C is a general-purpose programming language and can efficiently work on enterprise applications, games, graphics, and applications requiring calculations, etc.
C is a programming language and discovered by Dennis Ritchie in 1972, He has written this language as a high-level language that program can directly go to compiler and compiler can talk to the machine.
Initially, it was happening that COBOL and other assembly languages which are low-level language, can talk to machine indirectly conversion through assembly language to the machine through an interpreter.
So, when C language came it became very famous till now. it is known as the mother of all language.
What is the Software to start coding and development using C Programming Langauge?
Download Dev C++ for development and codingExample of Hello World
#include
#include
int main()
{
printf("Hello World");
getch ();
}
Instruction: write the above code in notepad and save as Hello.c
In programming, program files are save as filename.c and there is a lot of software that handle programming in c like Turbo c++, code block and Dev c++. I like Dev c++.
In the above program, #include
main method body
int main()
{
//main method body
}