Relative Content

Tag Archive for output

Facing problem for printing Palindrome numbers from specific starting point to ending point

Write a C program to print a Palindrome number from 1 to 100. #include <stdio.h> #include <math.h> int main() { int temp, remainder, i, total = 0, startingNumber, endingNumber; printf(“Enter the starting point for checking palindrome number : n”); scanf(“%d”, &startingNumber); printf(“Enter the ending point for checking palindrome number : n”); scanf(“%d”, endingNumber); for (i […]