C Language
C is a procedural programming language.It was initially developed by Dennis Ritchie and Brian Kerninghn in 1972.
Steps required while developing a programme:-
1. Writing the source code.
2. Compilation of the source code.
3. Execution of the machine code.
Some popular IDEs(Integrated development environments)
1. Turbo c++
2. Code blocks
3. Dev c++
4. Visual studio
5. X-code
These all above IDEs are Compilers.
1. First C programme-
#include<stdio.h)
#include<conio.h)
void main()
{
clrscr();
printf("Hello User");
getch();
}

Output:
Hello User

1. Writing the source code.
2. Compilation of the source code.
3. Execution of the machine code.
Some popular IDEs(Integrated development environments)
1. Turbo c++
2. Code blocks
3. Dev c++
4. Visual studio
5. X-code
These all above IDEs are Compilers.

#include<stdio.h)
#include<conio.h)
void main()
{
clrscr();
printf("Hello User");
getch();
}

Output:
Hello User
No comments:
Post a Comment