C Program to Print India Map

In this article, I am sharing the program to print the India map. If you like it, please do share it! Output: For an explanation of the code visit http://stackoverflow.com/questions/3533348/how-does-this-code-generate-the-map-of-india

Java Installation: Downloading, Installing and Setting Path

In this tutorial we will learn how to download and install Java and then setting path to make Java programs run. Downloading and Installing To download the latest JDK version visit link: http://www.oracle.com/technetwork/java/javase/downloads/index.html Now click on Download button to go to download page. Select Accept License Agreement and then download appropriate version for your operating system. …

Java Installation: Downloading, Installing and Setting Path Read More »

Features of Java Language

Simple Java derives its syntax from C and object oriented features from C++. If you are good in C and C++ programming then you can learn Java easily. Hence Java is Simple. Secure Java provides its own execution environment and hence do not allow any malicious program to access other parts of computer. Java Virtual …

Features of Java Language Read More »

Swift: A New Programming Language Introduced by Apple For iOS and OS X Development

Swift is an object-oriented programming language for iOS and OS X development which is recently introduced by Apple at its WWDC 2014. It is intended to coexist with Objective-C, the current programming language for Apple operating systems. Swift is designed to be more resilient against erroneous code. It is built with the LLVM compiler. Also …

Swift: A New Programming Language Introduced by Apple For iOS and OS X Development Read More »

What are B+ Trees?

B+ tree is a variation of B-tree data structure. In a B+ tree, data pointers are stored only at the leaf nodes of the tree. In a B+ tree structure of a leaf node differ from the structure of internal nodes. The leaf nodes have an entry for every value of the search field, along …

What are B+ Trees? Read More »