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();}...
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(...
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...
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(...
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...
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...
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...
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....