Script Tags

Click this link for more Java Script Codes        Example : How to use/create Script tag in Html? Example : How to use/call External Java Script file in Html?

Loading

Frameset/Frame/iFrame Tag

Example : How to create/use Vertical Frame in Html? Example : How to create/use Horizontal Frame in Html? Example : How to create/use iFrame in Html? Example : How to set iFrame as target for a link/page in Html?

Loading

CSS Home

________________________________________________________________________________ Click here to go to HTML Page                         Click here to go to Java Script Page ____________________________________________________________________________________ Example : How to create a CSS Home page menu & sub-menu in the home/web page of a website. Example : How Read more…

Loading

Vector & ArrayList in Java

Introduction In Java, both Vector and ArrayList are classes that implement the List interface, and they are used to store and manipulate collections of objects. Vector is one of the original collection classes in Java and came into existence since Java 1.0 whereas ArrayList is part of the Java Collections Read more…

Loading

Wrapper Class in Java

Introduction :  Since java is an object-oriented programming language, and hence we need to deal with objects of primitive data types many times such as in Collections, Serialization, Synchronization etc problems.To solve these problems, we use wrapper class. The wrapper classes are part of the java.lang package, which is imported Read more…

Loading

File Handling Examples in C

Example : Write a Program(WAP) in C to create a New Blank File with a File Name and confirm its formation/creation. Example : Write a Program(WAP) in C to create a New Blank File with a User-Defined File Name and confirm its formation/creation. Example : Write a Program(WAP) in C Read more…

Loading

C Structure Program Examples

Example : A C program to find out the memory occupied by a structure or union.  Example : A C program to store static/constant data in a structure & display them.  Example : A C program to store & copy static/constant data in another structure & display them.  Example : Read more…

Loading

Function Program Examples

    Example : A C program to display message using User Defined Function (UDF). Example : A C program to display the Local and Global variables . Example : A C program to pass an Array through a User Defined Function(UDF) . Example : A C program to pass Read more…

Loading

String in C

Definition of String in C A string in C is typically a single-dimensional character array ending with a null character. String in C are groups of characters that include letters, digits, and symbols enclosed in quotation marks. The string is an array/sequence of characters that is terminated by a null Read more…

Loading

Pointer Examples in C

      Example : A Pointer Examples in C to find out the size/memory occupied by different data types using sizeof() operator. Example : A Pointer Examples in C to print value using Pointer. Example : A Pointer Examples in C to print value and address of variables using Pointer through different ways. Example Read more…

Loading