Skip to content
Home
Business
Internet
Market
Stock
Parent Category
Child Category 1
Sub Child Category 1
Sub Child Category 2
Sub Child Category 3
Child Category 2
Child Category 3
Child Category 4
Featured
Health
Childcare
Doctors
Uncategorized
.
Arsalcs.com
Home
About Us
Privacy Policy
Contact Us-
Categories
CPP
Data Structures
OOP
About Me
Arslan Akram
View my complete profile
Popular Posts
Write a class book. Declare the data members 1)Page 2)Price 3)Name. Take the data of two books and display all values of book whose price is greater.
#include<iostream> #include<string.h> using namespace std; class book { private: int page; string name; float price; publi...
Write a program to fill the entire screen with a smiling face.The smiling face has an ASCII value 1.
C++ Code #include<iostream> using namespace std; int main() { char a=1; int i=0; while (i<5000) { cout<<a;...
Write a Program to check whether the entered number is Palindrome or not.
C++ code #include<iostream> #include<conio.h> using namespace std; int main() { int a,d,n,t=0; cin>>d; a=d; ...
A Program on Cafe billing.
C++ Code #include<fstream> #include<iostream> using namespace std; int starter (); int continental (); int chinese (...
Fibonacci Series.
C++ Code #include<iostream> using namespace std; int main() { int a=0,b=1,r,i,c; cout<<"Enter range="; c...
Write a C++ Program to check Armstrong number.
C++ Code #include<iostream> using namespace std; int main() { int num,s,d,n,rem=0; cout<<"Enter three di...
Write a C++ Program to print a hollow square shape using for nested loops.
C++ CODE #include<iostream> using namespace std; int main() { for(int i=1;i<=6;i++) { cout<<"*"; ...
Write a program to swap two variables without third variable.
C++ Code #include<iostream> #include<conio.h> using namespace std; int main() { int a,b; cout<<"a=...
Bubble Sorting in C++.
C++ CODE #include <iostream> using namespace std; void bubble_sort (int arr[], int n) { for (int i = 0; i < n; ...
Selection Sorting in C++.
C++ Code #include <iostream> using namespace std; void print (int [], int); void selection_sort (int [], int); //Driver Functi...
Contact Us-
Email:
arslanakram217@gmail.com
Home
Subscribe to:
Comments (Atom)
Popular Posts
Write a class book. Declare the data members 1)Page 2)Price 3)Name. Take the data of two books and display all values of book whose price is greater.
#include<iostream> #include<string.h> using namespace std; class book { private: int page; string name; float price; publi...
Write a program to fill the entire screen with a smiling face.The smiling face has an ASCII value 1.
C++ Code #include<iostream> using namespace std; int main() { char a=1; int i=0; while (i<5000) { cout<<a;...
Write a Program to check whether the entered number is Palindrome or not.
C++ code #include<iostream> #include<conio.h> using namespace std; int main() { int a,d,n,t=0; cin>>d; a=d; ...
A Program on Cafe billing.
C++ Code #include<fstream> #include<iostream> using namespace std; int starter (); int continental (); int chinese (...
Fibonacci Series.
C++ Code #include<iostream> using namespace std; int main() { int a=0,b=1,r,i,c; cout<<"Enter range="; c...
Write a C++ Program to check Armstrong number.
C++ Code #include<iostream> using namespace std; int main() { int num,s,d,n,rem=0; cout<<"Enter three di...
Write a C++ Program to print a hollow square shape using for nested loops.
C++ CODE #include<iostream> using namespace std; int main() { for(int i=1;i<=6;i++) { cout<<"*"; ...
Write a program to swap two variables without third variable.
C++ Code #include<iostream> #include<conio.h> using namespace std; int main() { int a,b; cout<<"a=...
Bubble Sorting in C++.
C++ CODE #include <iostream> using namespace std; void bubble_sort (int arr[], int n) { for (int i = 0; i < n; ...
Selection Sorting in C++.
C++ Code #include <iostream> using namespace std; void print (int [], int); void selection_sort (int [], int); //Driver Functi...