Program For Beginner


POPULAR PROGRAMMING LANGUAGES

C Example

#include<stdio.h>
void main()
{
    printf("Hello world !.. ");
}

more than 250+ different program in c Language.

C Language Examples

C++ Example

more than 150+ different program in c++ Language.

C++ Language Examples
#include<iostream>  
using namespace std; 
int main() 
{ 
    cout<<"Hello World!"; 
    return 0; 
}

Java Example

class HelloWorld 
{
    	public static void main(String args[]) 
    	{ 
    		System.out.println("Hello, World"); 
    	} 
}

more than 150+ different program in java Language.

Java Language Examples

C# Example

more than 150+ different program in c# Language.

C# Language Examples
using System;
public class Hello 
{
   public static void Main() 
   {
      Console.WriteLine("Hello World!");
      Console.ReadLine();
   }
 }

Python Example

# This program prints Hello, world!

print('Hello, world!')

more than 250+ different program in python Language.

python Language Examples