C++

C++ program to print a Pascal's triangle

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.

Read
C++

C++ program to print a multiplication table from 1 to n

C++ 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.

Read
C++

3 different C++ programs to find the last index of a character in a string

C++ 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.

Read
C++

How to find the sum of two complex numbers in C++

C++ 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.

Read
c

C logical AND, && explanation with examples

Learn 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.

Read
python

Python program to append a single line to the end of a file

Python 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.

Read
python

Python program to find the sum of all numbers of file

2 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.

Read
python

Python program to read all numbers of File

Python 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.

Read
Android

How to change the App name and package name in Android Studio

Learn 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.

Read
swift

How to find the maximum or largest element in a swift array

Swift 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