Function in C

Definition of Function in C A function in C is a sub-program that has a group of statements/blocks of codes that together perform a specific task. To make programming simple and easy to debug, we break a larger complex program into …

Loading

Structure and Union in C

Structure in C Definition Structure and Union in C is a data structures/variables that store large no. of data items in contiguous memory locations whose individual elements may differ in their datatypes. A structure is a user-defined data type available in C that …

Loading

Pointer in C

Introduction of Pointer in C when we declare a variable of any datatype in our program, we refer to that location in memory by a certain name but at the machine level, that location has a memory address, which is …

Loading

Non-String Function Examples

Example : A Non-String Function Examples or program in C to find the length of a character in a given string without using the string function. Example : A program in C to display the respective ASCII value of a …

Loading

One-Dimensional Array Examples

One-Dimensional Array Examples Example : A One-dimensional Array Examples or program in C to create an array to store ten static values given by the programmer & display them. Example : A C program to create an array to read …

Loading

Fundamentals in Java

There are the following major fundamentals in Java:- Character Set in Java Java uses the Unicode character set. Unicode defines a fully international character set that can represent all of the characters found in all human languages and writing systems …

Loading

Java Definition and Features

(Link for Concepts and features of OOPs) Java Definition and Features are as follows: – Definition of Java Java is a simple, scalable (easy to integrate), object-oriented (able to program real-life complexities), class-based, concurrent, general purpose, open source, high-level programming …

Loading

Java AWT GUI

Java AWT GUI is part of the Java SE (Standard Edition) platform and is available in the java.awt package. In other words, Java AWT GUI is part of the Java Foundation Classes (JFC). In Java, AWT (Abstract Window Toolkit) is …

Loading

Interview Questions in Java

The Commonly Asked Interview Questions in Java are categorized topics-wise as follows:- Fundamental Interview Questions in Java Ques. : What is Java? Ques. : List important features of the Java 12 release. Ques. : List various versions of Java. Ques. : What is …

Loading

Polymorphism in Java

Definition of Polymorphism in Java Polymorphism in Java is one of the important OOP features by which we can perform a single action in different ways. Simply, polymorphism is the ability of an object to take many forms in the …

Loading