C program to Subtraction of two Numbers by G Krishna Chauhan

C program  Subtraction of two Numbers


#include<stdio.h>
#include<conio.h>
void main ()
{ 
int a=5,b=4,c; 
c=a-b;  
printf("Value of a is %d",c);  
getch();
}

No comments:

Post a Comment