C Tutorial 13
C Tutorial 13
C Tutorial
C programming is a
C Programming Tutorial
general-purpose, procedural,
imperative computer
C - Home programming language
developed in 1972 by
C - Overview Dennis M. Ritchie at the Bell
Telephone Laboratories to
C - Features develop the UNIX operating
system. C is the most widely
used computer language. It
C - History
keeps fluctuating at number
one scale of popularity along
C - Environment Setup
with Java programming
language, which is also
C - Program Structure equally popular and most
widely used among modern
C - Hello World software programmers.
C - Compilation Process
Why to Learn C
Programming?
C programming language
is a MUST for students and
working professionals to
https://www.tutorialspoint.com/cprogramming/index.htm 13/04/2024, 15 17
Page 1 of 12
:
become a great Software
Engineer specially when
they are working in Software
Development Domain. Here
are some of the important
reasons why you should
learn C Programming −
It is a structured
programming
language and you can
use the skills learned
in C to master other
programming
languages.
You can use C
program to write
efficient codes and
develop robust
projects.
C is a low-level
language and you can
use it to interact
more directly with the
computer's hardware
and memory.
Facts about C
C is the most widely used
and popular System
Programming Language.
Most of the state-of-the-art
software have been
https://www.tutorialspoint.com/cprogramming/index.htm 13/04/2024, 15 17
Page 2 of 12
:
implemented using C. Here
are some facts about the C
language:
C was invented to
write an operating
system called UNIX.
The UNIX OS was
totally written in C.
C is a successor of B
language which was
introduced around
the early 1970s.
The language was
formalized in 1988 by
the American
National Standard
Institute (ANSI).
#include <stdio.h>
int main() {
https://www.tutorialspoint.com/cprogramming/index.htm 13/04/2024, 15 17
Page 3 of 12
: