My first post
This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.
#include<stdio.h>
#include<conio.h>
main ()
{
int x, y, sum, Avg ;
printf ("the value of x :");
scanf ("%d" , &x);
printf ("the value of y :");
scanf ("%d" , &y);
sum=x+y;
Avg=sum/2;
printf ("the average of two numbers is %d" , Avg);
return 0;
}
If you don't understand anything ,please inform me.
ReplyDelete