3 different C programs to print a hollow parallelogram using star or any other character. We will learn how to print a hollow parallelogram by using for loops, while loops and with user input characters.
ReadJava program to find quotient and remainder of two user given numbers in two different ways. We will learn how to use a separate function to find quotient and remainder.
ReadLearn how to print a half diamond star pattern in C programming in three different ways. We will learn how to print this pattern by using for loops, while loops and by using a separate function.
ReadC program to convert kilometers to miles in three different ways. We will learn how to use macro and a separate function to convert kilometers to miles in C programming language.
ReadC program to check if a number is a spy number or not. We will learn 3 different ways to check for a spy number in C, by using a for loop, by using a while loop and by using a separate function.
ReadC program to find the area and circumference of a circle in 3 different ways with user input radius values. We will learn how to solve this by using a separate method and with math.h header file.
ReadLearn how to check if a number is a duck number or not. A number is called a duck number if the number contains at least one zero. We will learn two ways to check if a number is a duck number or not.
ReadLearn how to create a simple calculator in Kotlin in two different ways. We will learn to write a calculator program using if-else statements and using when expressions.
ReadLearn how to remove specific elements from an array by using its index in Kotlin. We have to convert the array to a MutableList first and then convert it back to an array.
ReadLearn how to find the average of numbers of an array in Kotlin in two different ways. We can either iterate over the elements of the array or we can use the average function to find the average of numbers of an array.
Read