C++ program to print a pascal's triangle. The program will take the height of the triangle and print it out. Pascal's triangle is a number triangle and each number is the sum of two numbers above it.
ReadC++ program to print a multiplication table for one single number or from 1 to n. This C++ program will take the number as input and print the multiplication table.
ReadC++ program to find the last index of a character in a string. The post will show you three different ways to find the last character index in a string.
ReadC++ program to find the sum of two complex numbers. Complex numbers contains one real part and one imaginary part. This post will show you how to add two complex numbers and find the sum.
ReadLearn what is logical AND or && in C and how we can use it. It is a commonly used logical operation like logical OR or logical NOT. It returns true if both are true else it returns false.
ReadPython program to append single line to the end of a file. We will learn how to open a file to append in different ways and how to append a line to the end in python.
Read2 different Python programs to find the sum of all numbers found in a file. You will learn how to read the contents of a file and how to check all contents in a file in Python.
ReadPython program to read all numbers from a file. Learn how to read all the numbers of a file in Python and how to find the sum of the numbers of the file with examples.
ReadLearn how to change the application name and package name in Android Studio. In this post, I will show you how to use Android studio to change the name and package of an Android project.
ReadSwift program to find the maximum or largest element in an array. We can use max or max(by) to find the largest array value. In this post, I will show you how to use max and max(by) with examples.
Read