2.1 Instructions ( C PROGRAMMING )
Instructions :
1. Types Declaration Instructions :
Invalid :
Valid :
2 : Arithmetic Instruction :
e.g
practical :
#include <stdio.h >
#include <math.h>
int main () {
int b, c ;
b=c=1 ;
int a= b+c ;
int power = pow(b,c);
printf ("%d , " , power) ;
return 0 ;
}

Comments
Post a Comment