My first post

This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.

Today's Homework

 


#include<stdio.h>
#include<conio.h>
main()
{
    float n;
    printf("Enter a number:");
    scanf("%d", &n);
    if(n%2==0)
    printf("Even Number");
    else
    printf("Odd Number");
    getch();
}
উদ্দিপকের আলোকে অ্যালগরিদম ও ফ্লোচার্ট 
নির্ণয় কর

Comments