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  n;

        printf (“Enter numbers :”);

scanf (“%d ”, &n);

        if (n%2==0)

        printf(“The number is even”);

else

        printf(“The  number is odd”);

        getch () ;

}

Comments