In this tutorial, we will learn about static_cast and dynamic_cast in C++. We know that, in C++, we can assign one variable to another of the same type. But what happens if the dat.... Read More
In this post, we are going to discuss how to split a sentence into words in C++. Splitting a sentence into words is useful when we need to perform operations on some or all words o.... Read More
Hi coders! wondering how we can use the current time of the system in our program, i.e to print it on the screen or on a webpage. Java provides this feature through the System clas.... Read More
Hi coders! we all know to print a nonexecutable statement or simply a message on screen we use System.out.print statement then we put the message between these double quotes ”.... Read More
In this tutorial, we will learn how to initialize a Java Array. What is an Array in Java? Arrays in Java are objects that can store elements of the same data type. In a Java Array,.... Read More
This is a very simple and easy to understand topic where we will learn how to copy elements of one array to another in C++. We all know about arrays. Those who don’t know abo.... Read More
This tutorial would help in learning the following: Conversion of numbers from hexadecimal-system (0 to 9 and A to F) to decimal-system (using 0 to 9) Re-conversion of characters .... Read More
In this article, we will learn “How to plot points in matplotlib with Python”. For this, we have to implement two popular modules of Python in the field of plotting gra.... Read More