Pages

Factorial Number using Recursive Function in C

This program calculate the factorial of given number. factorial.c include <stdio.h> include<conio.h> int fact(int n) { ...

0 Comments
Simple Calculator using Swing package in Java

Simple Calculator using Swing package in Java

This is simple java program which perform basic calculation operations addition, subtraction and multiplication. In this demo program uses ...

0 Comments
Use of Scrollbar in Java for adjusting Background Color

Use of Scrollbar in Java for adjusting Background Color

This program demonstrate the use of scroll bar for adjusting background color of the window. It uses JScrollBar component and JFrame. Sc...

0 Comments

Applets in Java

Applets are a kind of program that Java supports which are used in the internet computing. These are the programs that are downloaded from ...

0 Comments

Determining whether the given number is prime or not in C

This program test the prime number. #include <stdio.h> #include <conio.h> void main() {      int num, i, c = 0;      pr...

0 Comments

Generating Prime Number in C

This is an example of generating prime number. It takes input form user and generate prime number upto given number. The main logic behind ...

0 Comments

Compress single file in zip format in java

Java has a rich library. We can perform compression operation in java by using "java.util.zip" library. For compressing a file in...

0 Comments

Server-Client Conversation in Java using TCP/IP protocal

This program demonstrate how to establish connection between the client and pass text message between them. ChatServer.java act as serve...

0 Comments
How to set environment variable in Windows 7 for JAVA

How to set environment variable in Windows 7 for JAVA

Sometime when you try to compile the java file through command prompt you get some error: 'javac' is not recognized as an intern...

0 Comments