Jan 31, 2007

C++ Program to print pyramid of numbers

C++ program to print pyramid of numbers.11 21 2 31 2 3 41 2 3 4 5main(){clrscr();int i,k;for (i=1;i<=5;i++){for (k=i;k<=i;k++){cout<<k;}cout<<endl;}getch();}...
READ MORE - C++ Program to print pyramid of numbers

C++ Program to print pyramid of numbers

C++ program to print pyramid of numbers.12 23 3 34 4 4 45 5 5 5 5main(){clrscr();int i,k;for (i=1;i<=5;i++){for (k=1;k<=i;k++){cout<<i;}cout<<endl;}getch(...
READ MORE - C++ Program to print pyramid of numbers

C++ Program to generate fibonacci series

A C++ program to generate Fibonacci series or sequence.  While doing engineering many time ask the same question that how to write a program to generate Fibonacci series. Here is how you can achieve it.Series is 1 1 2 3 5 8 13 21 34 55.............Here...
READ MORE - C++ Program to generate fibonacci series

C++ Program to print upside down pyramid of stars

C++ program to print pyramid of stars (Upside down)* * * * ** * * ** * ** **main() {clrscr();int i,k;for (i=1;i<=5;i++){for (k=5;k>=i;k--){cout<<"*";}cout<<endl;}getch(...
READ MORE - C++ Program to print upside down pyramid of stars

Jan 27, 2007

C++ Program to print pyramid of stars

C++ program to print pyramid of stars.** ** * ** * * ** * * * *main(){clrscr();int i,k;for (i=1;i<=5;i++){for (k=1;k<=i;k++){cout<<"*";}cout<<endl;}getch(...
READ MORE - C++ Program to print pyramid of stars

C++ Program to print natural numbers in reverse order

How to write a C++ program that generates natural numbers in reverse order.main(){clrscr();int i;for (i=100;i>=1;i--){cout<<i<<endl;}getch(...
READ MORE - C++ Program to print natural numbers in reverse order

C++ Program to generate odd numbers

This C++ program generates odd numbers between 1 to 20main(){clrscr();int i;for (i=1;i<=20;i=i+2){cout<<i<<endl;}getch(...
READ MORE - C++ Program to generate odd numbers

C++ Program to print even numbers (table of 2)

Here is a C++ program to generate series of even numbers using for loop.main(){clrscr();int i;for(i=2;i<=20;i=i+2){cout<<i<<endl;}getch(...
READ MORE - C++ Program to print even numbers (table of 2)

C++ Program to generate natural numbers from 1 to 100 using for loop

This program is useful for C++ beginners. Sometimes they find logic to build different series. Here is how to make a C++ program to generate natural numbers from 1 to 100 using for loop.#include<iostream.h>#include<conio.h>main(){clrscr();int...
READ MORE - C++ Program to generate natural numbers from 1 to 100 using for loop

Jan 24, 2007

Clearing Document List in Windows XP

In Windows XP 'My Recent Document" in Start menu shows all those documents on which you have worked recently. So anyone can keep track of your recent documents. If you wish to clear this list so that nobody can keep track about it. You can do it by following...
READ MORE - Clearing Document List in Windows XP

Jan 20, 2007

Create Screensaver In Windows-XP of your Photographs : (Tutorial)

You can create a Screensaver of your photograph in Windows-XP very easily and quickly. Screensaver would be like slide show presentation with transition effects. Follow the step by step process and achieve the task.1. Right Click on the empty area on...
READ MORE - Create Screensaver In Windows-XP of your Photographs : (Tutorial)

Jan 6, 2007

How to rename multiple files in Windows XP (Tutorial)

You can rename multiple files in Windows XP at one go easily. Follow this step by step tutorial and learn how to do the same. Here are the steps :1. Open the folder in which do you want to rename files.2. Select All those files which is to be renamed.3....
READ MORE - How to rename multiple files in Windows XP (Tutorial)

Infolinks In Text Ads

Total Pageviews

Powered by Blogger.

Dont Forget To Follow Us

Blog Archive