why does this happen in the output in java
Hi i am a new java learner. I have worked with random before like once or twice, why does this happen in the output now
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 […]