Java JSON Example

In this tutorial you will learn about Java JSON example. What is JSON? JSON stands for JavaScript Object Notation. JSON is a lightweight and an easier way for exchanging data on the web. JSON is originated from JavaScript programming language. JSON is a good alternative of XML. JSON is language independent and supports data structures …

Java JSON Example Read More »

Android LinearLayout Example

Here you will get Android LinearLayout example. LinearLayout is a very basic and most commonly used layout in Android. It is used to align or arrange its children either horizontally or vertically. The horizontal or vertical orientation can be specified using android:orientation attribute. By default the orientation is horizontal. Below I have shared an example …

Android LinearLayout Example Read More »

Circular Linked List in C

Here you will get program for circular linked list in C. What is Circular Linked List? A circular linked list is a linked list in which the last node points to the head or front node making the data structure to look like a circle.  A circularly linked list node can be implemented using singly …

Circular Linked List in C Read More »