#include<iostream> using namespace std; void main() { cout<<"Learn2Done" } Explanation of above syntax: #include<iostream>: It is a header file library...
Continue reading...Learn2Done
JAVA Exception Handling
Exception handling is the way to handle the unexpected circumstances like runtime errors. So when the unexpected circumstance occurs, the...
Continue reading...JAVA File Handling
In JAVA , we can work with files.This file class is inside the java .io.package.The file class can be used...
Continue reading...C# Files
In C#, there is a Files class from the bSystem.IO namespace which enables us to work with files. Files class...
Continue reading...C# Exception
Exception handling is the way to handle the unexpected circumstances like runtime errors. So when the unexpected circumstance occurs, the...
Continue reading...C# Methods Overloading
Method Overloading is a way to achieve polymorphism for methods. In Method Overloading there can be two or more methods...
Continue reading...C# Arrays
An array is a collection of data of the same type stored in a contiguous memory location. The array is...
Continue reading...C++ STRUCTURE
In C++, classes and structs are blueprints that are used to create the instance of a class. Structs are used...
Continue reading...C++ USER INPUT
There are three different ways of feeding data to a program in C++: Hard-coding: you write the data in the...
Continue reading...C++ DATATYPE
Datatypes are used for declaring variables and functions of different types. The type of a variable determines how much much...
Continue reading...