Loading...

C program to calculate age

Age Calculator /*Age Calculator */   #include <stdio.h> #include <time.h>   /*check given year is leap year or not*/ int isLeapY...
Read More

C program to convert number from Binary to Decimal Number

 A Given Binary Number to Decimal Number   /* C program to convert the given binary number into decimal */     #include <stdio.h>     ...
Read More

C program to convert number from Decimal to Binary

  Convert Given Decimal Number to Binary Number /*C program to convert number from decimal to binary*/   #include <stdio.h>   int main...
Read More

C program to check whether number is Perfect Square or not

  Given a Number is Perfect Square or Not /*C program to check number is perfect square or not.*/   #include <stdio.h> #include <ma...
Read More

C program to print all Leap Year from 1 to N

  To Print all Leap Year From 1 to Given Year /*C program to print all leap years from 1 to N.*/   #include <stdio.h>   //function to ...
Read More

A C Program to Find Armstrong Number

  Check The Given Number Is Armstrong Number /* C program to check whether a number is armstrong or not */   #include <stdio.h>   int ...
Read More

Check Prime Number using C program

 Given Number is Prime Number or Not   /*Program to check entered number is whether prime or not.*/ # include < stdio.h > int m...
Read More