2.1 Instructions ( C PROGRAMMING )


Instructions :



1.  Types Declaration Instructions :

 

  

Invalid :       

Valid :




2 : Arithmetic Instruction :





e.g



agar power use karna hai toh :



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 ;
}








Modular operator :


eg  




type convertor  




Operator Precedence 


 


nicchey wale example ke case ke liye :




3. Control Instructions




Comments

Popular posts from this blog

day 2 ( C PROGRAMMING )

Conditional Statements (C Programming)