Features of C

Features and advantages of C Simple and easy to learn. Fast, Powerful & Efficient. Procedural Language Portable language. Structured Programming Language Rich Library. Mid-Level Programming Language. Pointers/Recursion. Extensible 1. Simple and easy to learn.C is simple and easy to learn …

Read moreFeatures of C

Java – this Keyword

In Java, this is a reference variable, this can be used inside any method or constructor to refer to the current object. Following demonstrating the use of this Use of this Keyword in constructor: Output: Name: Daniel marks:90 Note: that, Java does …

Read moreJava – this Keyword

Java – StringBuffer

StringBuffer and StringBuilder in java is a class that provides the mutable(changeable) ability.Since a String is immutable that is its value cannot be changed once the object is created. So to modify the String, StringBuffer and StringBuilder class is used. …

Read moreJava – StringBuffer

C – Variables

What are variables in C? The variable is the basic unit of storage that holds the value while the program is executed. We can also say that it is a name given to the memory location. A variable is defined …

Read moreC – Variables

C – Program Structure

Before we start the basic building blocks of the C programming language, we must know the Program Structure of C for the building of programs. A C program basically consists of the following parts: Preprocessor Commands. Functions. Variables. Statement & …

Read moreC – Program Structure

Java – Strings

A string is defined as a series of characters or an array of characters in java. They are present within the double quote. Create a String: One way to create a String is to directly declare it within the double …

Read moreJava – Strings