C program to read contents of a file and print all characters in uppercase

This C programming tutorial will show you how to read the contents of a file and print all characters of that file in uppercase. The program will take the file name as input and print all characters in uppercase.

Read

Different ways in python to remove vowels from a string

In this python program, we will learn how to remove all vowels from a string. Our program will take the string as input from the user and print out the modified string.

Read

write a python program to do a case insensitive string replacement

This python tutorial will show you how to do a case insensitive string replacement. We will create regex with ignore-case for the replacements.

Read

Python program to select an item randomly from a list

Learn how to select an item randomly from a list in python. We will learn how to select a random number and how to select a random string from a list of different values.

Read

C++ program to create a file and write data to it

C++ tutorial to how to create a file and how to write data to this file. We will learn how to use C++ ifstream library for file related operations.

Read

Different ways to convert one boolean to string in python

Learn how to convert one boolean to string in python using different ways. In this post, I will show you three different methods by using format(), using %s and using str()

Read

C++ program to create array of objects by taking user inputs

This C++ program will teach you how to create an array of objects by taking the inputs from the user with an example. The example will use one predefined class to create objects.

Read

C++ program to print data in a table

Learn how to print different data in a table in C++. Using the setfill() and setw() methods of iomanip, we can structure words to print like a table in C++.

Read

Android Kotlin example to pass data from one Activity to another

This Kotlin Android tutorial will show you how to pass data from one activity to another. We will use Android studio in this example.

Read

How to add bottom tab navigation bar in react native

In this react native tutorial, we will learn how to put bottom tab navigation bar or bottom tabs in react native. We will use react navigation V5.

Read