C++ is a computer language widely used to create programs, software and projects it was implemented in 1972 by Dennis Richie at Bell Laboratories it initially became widely known as the UNIX operating system
C++ is a computer language widely used to create programs, software and projects
it was implemented in 1972 by Dennis Richie at Bell Laboratories it initially became widely known as the UNIX operating system's development Language. Today most of the codes for general purpose operating system is written in C or C++
Here we shall learn C++ (a2z) and its implemetations and uses in this post
here we use video C++ tutorials by Apoorv Kathal which are in hindi as you can say in urdu because hindi and urdu are same in spoken but different in written so here we start of programming
For this we need a compiler and code to learn programming so lets start from installing compiler
we shall add more video tutorials about c++ programming as of our need or you can ask us to upload more tutorials
it was implemented in 1972 by Dennis Richie at Bell Laboratories it initially became widely known as the UNIX operating system's development Language. Today most of the codes for general purpose operating system is written in C or C++
Here we shall learn C++ (a2z) and its implemetations and uses in this post
here we use video C++ tutorials by Apoorv Kathal which are in hindi as you can say in urdu because hindi and urdu are same in spoken but different in written so here we start of programming
For this we need a compiler and code to learn programming so lets start from installing compiler
we shall add more video tutorials about c++ programming as of our need or you can ask us to upload more tutorials
My LEARNING C++ From Start to End | Semester Based |
#include<iostream>
using namespace std;
int main ()
{
cout<<"*********\n*\t*\n*\t*\n*\t*\n*\t*\n*\t*\n*\t*\n*********\n";
return 0;
system ("pause");
}
My LEARNING C++ From Start to End | Semester Based |
Combined Five Examples
#include<iostream>
using namespace std;
int main ()
{
cout<<"*********\n*\t*\n*\t*\n*\t*\n*\t*\n*\t*\n*\t*\n*********\n";
cout<<" *** \n * * \n*\t*\n\*\t*\n*\t*\n*\t*\n*\t*\n * * \n *** \n ";
cout<<"* \n *** \n*****\n * \n * \n * \n * \n * \n * \n";
cout<<" * \n * * \n * * \n * * \n*\t*\n * * \n * * \n * * \n * \n";
cout<<"* * * * * * * *\n * * * * * * * *\n* * * * * * * *\n * * * * * * * *\n* * * * * * * *\n * * * * * * * *\n* * * * * * * *\n * * * * * * * *";
return 0;
system ("pause");
}
Combined Five Examples |
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
int a, b, c, d, e;
a=1, b=2, c=3, d=4, e=5;
cout<<"Numbers\tSquare\tCube\n";
cout<<a<<"\t"<<pow(a,2)<<"\t"<<pow(a,3)<<"\n";
cout<<b<<"\t"<<pow(b,2)<<"\t"<<pow(b,3)<<"\n";
cout<<c<<"\t"<<pow(c,2)<<"\t"<<pow(c,3)<<"\n";
cout<<d<<"\t"<<pow(d,2)<<"\t"<<pow(d,3)<<"\n";
cout<<e<<"\t"<<pow(e,2)<<"\t"<<pow(e,3)<<"\n";
return 0; }
My LEARNING C++ From Start to End | Semester Based |
COMMENTS