Chapter02 CLanguage
Chapter02 CLanguage
• Faculty of ICT
• Course: Procedural Language
• C-Language
• Instructor: Eng. Abdikani Dhuhul
1
Copyright © 2012 Pearson Education, Inc.
Chapter 2:
Introduction to C Language
int item;
Int a;
Int b;
#include <stdio.h>
#include <stdlib.h>
int main()
{
return 0;
}
int p, n ;
float r, si ;
p = 10 ;
n=3;
r=2;
/* formula for simple interest */
si = p * n * r /100;
printf ( "%f" , si ) ;
getch();
}