C++ - Find power of a number C++ - Check if number is palindrome C++ - Find reverse of a number C++ - Change string from uppercase to lowercase C++ - Check number is Armstrong number or not C++ - Find largest number of an array C++ - Count vowels, consonant, digits & special characte...
# Python program to check prime number # Function to check prime number def isPrime(n): return all([(n % j) for j in range(2, int(n/2)+1)]) and n>1 # Main code num = 59 if isPrime(num): print(num, "is a prime number") else: print(num, "is not a prime number") ...
C++ – Check Palindrome Number C++ – Bubble sort C++ – Random Number Generator C++ – Sum of ODD Numbers in the Given Range C++ – Display current date and time Formula Based Programs C++ – Leap Year C++ – Surface Area and volume of cone ...
printf("\nString is Palindrome"); } else{ printf("\nNot Palindrome"); } getch(); } You’ll also like: Palindrome Number in Java Example. Enter a String from keyboard and check whether it Palindrome or Not C Program Write a Program to Calculate Fahrenheit to Celsius ...
Here is source code of the Python Program to check whether a string is a palindrome or not using recursion. The program output is also shown below. defis_palindrome(s):iflen(s)<1:returnTrueelse:ifs[0]==s[-1]:returnis_palindrome(s[1:-1])else:returnFalsea=str(input("Enter string:...
How Convert Lower Case (strlwr) String to Upper case (strupr) String Write A C++ Program For Constructors With One Parameter: A Special Case. Write a C++ Program to detect whether the entered number is even or odd. Use nested switch () case statement. Palindrome Program in C Write...
Check Whether a Number is Palindrome or Not C Tutorials C switch Statement C break and continue Multiply Two Floating-Point Numbers Print an Integer (Entered by the User) Compute Quotient and Remainder Check Whether a Number is Even or Odd C Program to Make a Simple Calculator Using...
Here, in this tutorial you will learn to find the maximum number among the three given numbers by using the if-else statements.
Program to find the surface area of cuboid Program to find the surface area of the cylinder Program to Check Disarium number Program to Check Happy number Program to Check Harshad number Program to print all Disarium numbers between 1 to 100 Program to print all Happy numbers between 1 to ...
AllTempScalesConv.c Ultimate temperature conversor. Anagram-Program-in-C checkAnagram.c AreaAndCircumference.c Initial programs Area_of_Circle.c Basic_Examples Area_of_Square.c Basic_Examples Area_of_Triangle.c Basic_Examples ArmstrongNumber.c Armstrong Numbers Automorphic_number.c Automorphic...