If you still a Windows 7/Vista/XP users and want to change the desktop look like windows 8 without the hassle of installing windows 8 Con...
If you still a Windows 7/Vista/XP users and want to change the desktop look like windows 8 without the hassle of installing windows 8 Con...
1. Internet Download Manager Internet Download Manager is one of the fastest download managers. It also performs the entire task for...
Microsoft has launched windows 8. From than million of people has been purchased and start using windows 8, . Windows 8 came with many...
#include <iostream> using namespace std; int main() { char alpha; cout << "Enter An Alphabet: "; ...
The statements in the for loop repeat continuously for a specific number of times. The while and do-while loops repeat until a certain...
#include <iostream> using namespace std; int main() { for (int i=1;i<=5;i++) cout << "I love PAKISTAN...
#include <iostream> using namespace std; int main() { int num; cout << "Enter Number for the Table: "...
// Get Length and Number from user to print table of given number up to given length #include <iostream> using namespace std; ...
#include <iostream> using namespace std; int main() { int sum=0,end_num; cout << "Enter integer for which ...
/* if you give the integer to which you want to get product greater than 9 then it will generate output in Exponential form. if u mak...
#include <iostream> using namespace std; int main() { int product=1; for (int i=1;i<=10;i++) { if(i%2==0) { ...
#include <iostream> using namespace std; int main() { int end_num,sum=0; cout << "Enter integer for which ...
#include <iostream> using namespace std; int main() { int num,fact=1; cout << "Enter Integer to get Factorial:...
#include <iostream> using namespace std; int main() { double avg,sum=0,counter=0; for(int j=1;j<=100;j++) { i...
// 2nd Logic To check prime or composite #include <iostream> #include <process.h> using namespace std; int main() { ...
#include<iostream> #include<process.h> using namespace std; int main() { int num,count=0; cout<<"Enter...
//3rd logic with NOT Logical Operator and bool Data Type. #include <iostream> #include <process.h> using namespace std;...
//Write a program to calculate the sum of squares of integers 1 to n. where n is the value entered by user. i.e(sum=1 2 +2 2 +3 2 ...
write a program that will calculate the sum of series: x+x 2 + x 3+............... +x n #include <iostream> #include ...
write a program that reverse the value of given number like 12345 and program should output 54321 #include <iostream> #include...