দুইটি সংখ্যার তুলনার প্রোগ্রাম
#include int main () { int x,y; printf("Enter the value x and y : "); scanf("%d%d",&x,&y); if (x>y) printf("The value of x is %d grater than %d small", x, y); else printf("The value of y is %d grater than %d…
মন্তব্য দেখুন →