C C program to calculate age April 13, 2021 Add Comment Age Calculator /*Age Calculator */ #include <stdio.h> #include <time.h> /*check given year is leap year or not*/ int isLeapY... Read More
C C program to convert number from Binary to Decimal Number April 13, 2021 Add Comment A Given Binary Number to Decimal Number /* C program to convert the given binary number into decimal */ #include <stdio.h> ... Read More
C C program to convert number from Decimal to Binary April 13, 2021 Add Comment Convert Given Decimal Number to Binary Number /*C program to convert number from decimal to binary*/ #include <stdio.h> int main... Read More
C C program to check whether number is Perfect Square or not April 13, 2021 Add Comment 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 C program to print all Leap Year from 1 to N April 13, 2021 Add Comment 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
C A C Program to Find Armstrong Number April 13, 2021 Add Comment Check The Given Number Is Armstrong Number /* C program to check whether a number is armstrong or not */ #include <stdio.h> int ... Read More
C Check Prime Number using C program April 13, 2021 Add Comment Given Number is Prime Number or Not /*Program to check entered number is whether prime or not.*/ # include < stdio.h > int m... Read More