Posts

Showing posts from January, 2016

To copy text from one file to another file > C Program

To copy text from one file to another file > C Program System Programming and Compiler Construction #include<stdio.h> #include<conio.h> void main() { FILE *fp1, *fp2; char ch, fname1[20], fname2[20];

Calculator Application > Java ME

Image
Calculator Application > Java ME Program Mobile Communication and Computing Program: import javax.microedition.lcdui.*; import javax.microedition.midlet.*; public class Midlet extends MIDlet implements CommandListener { Display d; Ticker t; Form f;

Java ME Program to take input and Program to display marquee text > Java ME Program

Image
Java ME Program to take input and Program to display marquee text > Java ME Program Mobile Communication and Computing Program 1: Midlet to take input into the device. import javax.microedition.lcdui.*; import javax.microedition.midlet.*; public class Midlet1 extends MIDlet {