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>0)

          printf(“The number is positive”);

else

          printf(“The  number is negative”);

          getch () ;

}

 

Comments