Basic Html Code Hai Friends On The Way to learning HTML Every Person Should Learn Basic Html Code .Dont Worry Iam Here To Share Some Information <!DOCTYPE html> <html> <head> <title>Page...
Featured Posts
Wednesday, 4 January 2017

Html Introduction
Html Introduction HyperText Markup Language (HTML) is the standard markup language for creating web pages and web applications. With Cascading Style Sheets (CSS), and JavaScript, it forms a triad of cornerstone technologies for the World...
Friday, 26 August 2016

Program for to check Armstrong number or not.
Armstrong number An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself. For example, 371 is an Armstrong number since 3**3...

C++ Identifiers
C++has strict rules for variable names. A variable name is one example of an identifier. An identifier is a word used to name things. One of the things an identifier can name is a variable.We will...
Saturday, 20 August 2016

Compile & Execute C++ Program
Let's look at how to save the file, compile and run the program. Please follow the steps given below: Open a text editor and add the code as above. Save the file as: hello.cpp Open a ...

C++ Program Structure
Let us look at a simple code that would print the words Hello World #include<iostream>usingname space std;// main() is where program execution begins.intmain(){ cout <<"Hello World"; // prints Hello World return 0;} Explanation:- The C++ ...
Wednesday, 17 August 2016

Uses of C++
Use of C++: C++ is used by hundreds of thousands of programmers in essentially every application domain. C++ is being highly used to write device drivers and other softwarethat rely on direct manipulation of hardware under...