How to Write, Compile and Run Your First Java Program?

Before running Java programs you need to install and setup java. For installation guide read: Java Installation: Downloading, Installing and Setting Path How to write and run Java programs? Open notepad and write below program.   class demo {                 public static void main(String…S)                 {                                 System.out.println(“Java Programming”);                 } } Now save the file …

How to Write, Compile and Run Your First Java Program? Read More »

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 »

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 »