#include<iostream> using namespace std; void main() { cout<<"Learn2Done" } Explanation of above syntax: #include<iostream>: It is a header file library...
Continue reading...Learn2Done
C++ TOKENS
Token are the most important element to be used in creating a program. The token in C++ can be defined...
Continue reading...C OPERATORS
Operators: Operators are special symbol that perform specific operation on one, two or three operands and then return a result. Operand: Operand...
Continue reading...C STRINGS
It is an array/sequence of characters that ends with null characters (). Null characters represent the end of the string....
Continue reading...C FUNCTIONS
A function is a block of statements that performs a specific tast. Advantages of functions: Using functions, we can avoid...
Continue reading...C ARRAY
An array is a collection of data of the same type stored in a contiguous memory location. The array is...
Continue reading...JS Introduction
JavaScript is an object-oriented programming language used to enhance HTML pages.
Continue reading...JAVA List
C++ is a object – oriented programming language developed by Bjarne Stroustrup, starting in 1979 at Bell Labs. It was...
Continue reading...JAVA Identifiers
Identifiers are fundamental building blocks of a program and are used as the general terminology for the names given to...
Continue reading...JAVA Keywords
Keywords in java can be defined as reserved words or pre-defined words having their own importance and each keyword has...
Continue reading...