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;


Comments

Post a Comment