How to catch HTTP 404 error in Python

By Ranjeet V

Hi guys! In this tutorial, we will learn how to catch an HTTP 404 error in Python. There are many instances when we encounter an HTTP error with error code 404 on the internet. Thi.... Read More

Inline Function in C++ with example

By Meghana Thatikonda

In this tutorial, we will see a simple example of inline function in C++. Inline functions in C++ Inline functions are treated differently by the compiler. So, they usually run mor.... Read More

Calculate the execution time in PHP

By Faruque Ahamed Mollick

The execution time of the PHP script is the time taken for the script to be executed. Whenever we run the PHP code on the server, it takes some time to execute. It is possible to c.... Read More

Get common elements from two different arrays in PHP

By Faruque Ahamed Mollick

Suppose we have two PHP array and each of them contains some elements. Now we want to get common elements or values from those two arrays with PHP. Then how we can do it? Well, thi.... Read More

Tuple in C++

By Shubham Baniya

Hello Folks!!! Welcome to this C++ tutorial where you are going to learn about an interesting topic of C++ which is Tuple. So let’s dove into the tutorial… If you are f.... Read More

Set default timezone in PHP | date_default_timezone_set()

By Faruque Ahamed Mollick

Do you need to change the default timezone for all the date and time functions of PHP? If you are looking for something for this, then you are at the place where you will get the s.... Read More

Inline function in C++

By Siddharth Shankar Debata

In this tutorial, we are going to learn about inline function in C++. This function is useful because it reduces the execution time of a program. Generally, whenever a function cal.... Read More

Associative arrays in C++

By Siddharth Shankar Debata

In this tutorial, we will learn about associative arrays in C++. Generally, an array represents a collection of elements having similar data types accessed by an index number which.... Read More

Related Posts