static_cast and dynamic_cast in C++

By Adrika Roy

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

Split a Sentence into words in C++

By Astha Awasthi

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

currentTimeMillis() Function In Java

By Darshna Patil

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

How to print Double Quotes In Java

By Darshna Patil

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

How to initialize an array in Java

By Tishya Thakkar

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

How to copy elements of one array to another in C++

By Barshan Paul

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

Hexadecimal to Decimal conversion in Java

By snormy

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

How to plot points in matplotlib with Python

By Sachin Rastogi

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

Related Posts