0% found this document useful (0 votes)
9 views

C Tutorial 13

The document provides an overview of the C programming language including its history, why it is useful to learn C, and facts about C. It also gives a simple Hello World program example in C.

Uploaded by

mrdoogees
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

C Tutorial 13

The document provides an overview of the C programming language including its history, why it is useful to learn C, and facts about C. It also gives a simple Hello World program example in C.

Uploaded by

mrdoogees
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

C Tutorial

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).

Hello World using


C Programming
Just to give you a little
excitement about C
programming, I'm going to
give you a small
conventional C Programming
Hello World program. You
can run it here using the
"Edit and Run" button.

#include <stdio.h>

int main() {

https://www.tutorialspoint.com/cprogramming/index.htm 13/04/2024, 15 17
Page 3 of 12
:

You might also like