Sunday, April 12, 2020

Tuesday, April 7, 2020

Monday, April 6, 2020

Thursday, April 2, 2020

c program to check given number is armstrong number or not

C program to check given number is armstrong number or not    A Positive number is called Armstrong number.   abcd.... = an + bn + cn + dn + In this case of Armstrong number of 3 digits, the sum cubes of each digits is equal to the number of itself. 123 = 1*1*1 + 2*2*2...

c program to print reverse of a number using while loop

C program to print reverse of a number using while loop #include int main() { int n, rev = 0, remainder; // Integer values printf("Enter an integer: "); // Enter user value scanf("%d", &n); // storing values while (n != 0) // while loop { remainder = n % 10; ...

c program to check whether a number is palindrome or not using while loop

C program to check whether a number is palindrome or not using while loop An integer is palindrome if the reverse of that number is equal to the original number. #include int main() { int n, reversedN = 0, remainder, originalN; printf("Enter an integer: "); scanf("%d", &n); ...

c program to check whether a character is uppercase or lowercase alphabet

c program to check whether a character is uppercase or lowercase alphabet  #include int main() { char c; // enter character value printf("Enter u to display uppercase alphabets.\n"); // U for uppcase printf("Enter l to display lowercase alphabets. \n"); // I for lowercase ...

Recent Posts