Posts by Yashas
Author Biographical Info: Not available
In this tutorial, we will learn about pointers and references in C++. Pointers are one of the powerful features of C++. Pointers are used to access and manipulate addresses. Everyt.... Read More
In this tutorial, we will learn everything about Singly Linked Lists in C++. We will learn the following – What are Singly Linked lists? How are they created? Different opera.... Read More
In this tutorial, we will learn about Doubly Linked Lists in C++. We will learn the following – What are Doubly Linked Lists(DLL)? Advantages and disadvantages of DLL of Sing.... Read More
In this tutorial, we will learn about handling click events on Android. There are 2 ways to handle click events of a button on Android – onClick in XML layout Using an onClic.... Read More
In this tutorial, we will learn about threads and multithreading in Java. We will learn the following in the following tutorial What are threads? What is multithreading? Some e.... Read More
In this tutorial, we will learn how to compare two strings in Java. There are different ways to do that – 1. By using String.equals() method 2. By using compareTo() method .... Read More
In this tutorial, we will learn what fork() system call does and how it is implemented in Linux systems (only). There are some example questions to help you understand better. What.... Read More
In this tutorial, we will learn how to break(or split) a String into characters. The end result can be an array of characters or an array of Strings which contain characters. Below.... Read More