Community driven content discussing all aspects of software development from DevOps to design patterns. Good programmers need to create code that efficiently solves problems, using various methods. A ...
Check whether a given number is palindrome or not. A number is Prime if it is greater than 1 and divisible only by 1 and itself. Check divisibility from 2 to n/2. if ...
Prints numbers starting from N down to 1 using recursion. Calculates the sum of the first N natural numbers using recursion. Counts how many digits a number has using recursion. Print Even Numbers ...