Posts

Showing posts from June, 2013

HTML language

    Welcome to the world of HTML that is full form of: H - Hyper T - Text M - Markup L - Language        HTML is used to make web pages.The meaning of HTML is: Hyper is the opposite of linear.Old -fashioned computer programs were necessarily linear -that is ,they had a specific order.But  with a "hyper" language such as HTML,the user can go anywhere on the web page at any time. Text is just what you're looking at now -English characters used to make up ordinary words. Mark-up is what is done to the text to change its appearance.For instance,"marking up" your text with <b> before it and </b> after it will put that text in bold. Language is just that.HTML is the language that computers read in order to understand web pages. A mark-up language is set of mark-up tags.HTML uses mark-up tags to describe we pages. Note that HTML is not a programming language,it is a mark-up language. Advantages of HTML:-...

C++ Programs Examples

Image
In Microsoft Visual C++ 6.0 (Text Editor)- Follow the steps:- Step1:-  Step 2:- Step 3:- Step 4:- Step 5:- Step 6:- Step 7:- Step 8:- Step 9:- Step 10:- Step 11:- Step 12:- Step 13:- Step 14:- Step 15:- Step 16:- 1. Program to Display Simple Message:- #inlude<iostream.h> void main() { cout<<"Welcome to my blog.\n"; cout<<"Thank you for visiting my blog.";  } /************************* Output **************************/ Welcome to my blog. Thank you for visiting my blog. 2. Program to find addition of first 100 numbers:- #include<iostream.h> void main() { int sum=0,i; for(i=1;i<100;i++) { sum=sum+i; } cout<<"Addition of first 100 numbers is:-"<<sum; } /************************* Output **************************/ Addition of first 100 numbers is:-5050 3. Program to compute sum of the seri...