You are on page 1of 19

ARE

YOU
READY
?
PROGRAMMING
LANGUAGE ?
C
Lesson 5:
INTRODUCTION TO C

ICT 1 | Fundamental in Computer


Programming
OBJECTIVES
•Explain the concept of Programming C;
•Distinguish how to program using C
language; and
•Seek the knowledge of Programming C
C
a High level, General purpose
programming language which was initially
used for system development work
Procedural Language

C
Compiled on a variety of Structured
computer platforms Language

Easy to learn High Level Language


FEATURES OF C
FEATURES OF C
• Portability • Syntax Based
• Simple • Case Sensitive
• Powerful • Structure Oriented
• Fast & efficient • Middle Level
• Modularity • Uses of Pointer
• Compiler Based
• Platform dependent
HISTORY OF C
DENNIS RITCHIE
The Programming C language is a structure oriented
programming language, developed at Bell Laboratories
in 1972.

HISTORY OF C
UNIX OS
C language was invented for implementing OS.

HISTORY OF C
K&R C
In 1978, Dennis Ritchie and Brian Kernighan published
the first edition “The C Programming Language”.

HISTORY OF C
APPLICATION OF C
• Turbo C
• programiz
• onlinegdb
How to create a simple program
using C language?
HELLO WORLD
#include <stdio.h>

It is used to include the standard


input and output library functions.
The printf() function is defined in
stdio.h
#include <stdio.h>
void main()

The main() function is the entry


point of every program in the C
language. The void keyword
indicates that it returns no value
#include <stdio.h>

The printf() function is used to print


void main() data that is specified in brackets on
{ the console

printf(“Hello World”);

You might also like