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  a, b, sum ;

printf (''Enter the value of a:");

scanf ("%d", &a);

printf (''Enter the value of b:");

scanf ("%d", &b);

sum= a+b;

printf ("The total is %d", sum);

return 0;

}

Comments