Saturday, January 12, 2013

What is datatypes in C.(Brief)

Data Types


Data types are provided to store various types of data that is processed in real life. A data type can be

Friday, January 11, 2013

What is Eclipse?

Eclipse is a platform that has been designed from the ground up for building integrated web and application

How to use the Eclipse IDE for the first time.

In this tutorial I will show you how to use the Eclipse IDE for the first time.
  
Once its downloaded & installed, double click the Eclipse icon to start.



Because this is your first time running Eclipse, it will take a while to load as it sets up the environment.



Thursday, January 10, 2013

What is Java technology and why do I need it?


Java is a programming language and computing platform first released by Sun Microsystems in 1995. It is the underlying technology that powers state-of-the-art programs including utilities, games, and business

Running a Java Program from Command Prompt


  • Create a temporary folder C:\mywork.  Using Notepad or another text editor, create a small Java file HelloWorld.java with the following text:
    public class HelloWorld
    {
      public static void main(String[] args)
      {
        System.out.println("Hello, World!");
      }
    }
    Save your file as HelloWorld.java in C:\mywork.  To make sure your file name is