13
THE C SHOW EPISODE 1

The C show Episode 1

Embed Size (px)

DESCRIPTION

c introduction for beginners in a most easy way with fun.

Citation preview

Page 1: The C show Episode 1

THE C SHOWEPISODE 1

Page 2: The C show Episode 1

History of C Language• C is developed by Dennis Ritchie between

1969 and 1973 at AT & T Bell Labs.

Page 3: The C show Episode 1

Lets Go into History…

Page 4: The C show Episode 1
Page 5: The C show Episode 1
Page 6: The C show Episode 1

Why c?

• C is still widely used portable• High level but also lets you program closer

to hardware• Many languages have features of C;

Page 7: The C show Episode 1

Versions of C• “K & R” C• Ansi-C (C89 & C90)• C 99

Page 8: The C show Episode 1

• Lets us take an example

Page 9: The C show Episode 1

Similarly• You have to include files That are required for the proper running of the

program.

#include<stdio.h> //Standard input Output Header File

Page 10: The C show Episode 1

Ok• Now you have included Everything. Now what would you

do ?

Now is the time for the “MAIN ” thing.

Page 11: The C show Episode 1

Program#include<stdio.h>void main() //MAIN THING to do{printf(“Hello there lets go Dinner tonight”);}

Page 12: The C show Episode 1
Page 13: The C show Episode 1

CODE COMPILER COMPUTER