Thursday, 26 May 2016
Pointers In C++
What Is Pointer....???
Pointer In C++ means That To Point out Location
Of any Variable
And Its Written *ptr(ptr Is variable Which You Want To find The Location
int xyz=786; This Is Variable
int *p=&xyz; This Is Pointer Which Is Equal To The Location Of Variable
int **p1=&p; This Also a Pointer Which Shows The Variable Which Is Placed On "p".....
Click Read More For Code :-
Pointer In C++ means That To Point out Location
Of any Variable
And Its Written *ptr(ptr Is variable Which You Want To find The Location
int xyz=786; This Is Variable
int *p=&xyz; This Is Pointer Which Is Equal To The Location Of Variable
int **p1=&p; This Also a Pointer Which Shows The Variable Which Is Placed On "p".....
Click Read More For Code :-
Wednesday, 25 May 2016
What Is Array In C++ Video Tutorial In Urdu/Hindi
What Is Array In C++ Video Tutorial In Urdu/Hindi
In THis Tutorial You Learn ABout Arrays
What Is Array In C++....??
And Uses
And How To Use.....??
Click Here For Tutorial
In THis Tutorial You Learn ABout Arrays
What Is Array In C++....??
And Uses
And How To Use.....??
Click Here For Tutorial
What Is Function In C++ In Urdu/Hindi Tutorial
What Is Function In C++ In Urdu/Hindi Tutorial.....
In This Video It Shows what Is function And How We Use It......
Click Here For Video
In This Video It Shows what Is function And How We Use It......
Click Here For Video
Check Given Number Is Palindrome Or Not
Check Given Number Is Palindrome Or Not
Palindrome Number Means
If We write a Number
For Example : 121
This Is Palindrome Because
If We Reverse It Their Is No Change In It
Output :
CodeIs Given Blow
Click On Read More
Get Max Number In 5 Numbers Given By User (Greater Number)
Get Max Number In 5 Numbers Given By User (Greater Number)
if(n[i]>max)
max=n[i];
Code Is Give Blow
Click On Read More
Draw A Bar with Graphics.h in Dev C++
Draw A Bar with Graphics.h in Dev C++
bar(100,100,200,200);.......
bar(int lef, int top, int righ, int bottom)
Left Top means that Left Side of bar and Top Of Bar.......
And Right bottom means right side and Bottom Of bar.....
OutPut :
Code :
Draw a Circle with Graphics.h In Dev C++
Draw a Circle with Graphics.h In Dev C++
circle(200,150,75);.......
circle(int x, int y, Radius)....
A(x,y) Is Point On Axis...... On This Point Draw a Circle With a Radius Given......
Output Shown Like This:
Code :-
Is Given Blow
Draw A Line With Graphics.h In Dev C++
Draw A Line With Graphics.h In Dev C++
line(int x1,int y1,int x2,int y2).....
A(x1,y1) Is a 1st point On BGI window
B(x2,y2) Is a 2nd Point On BGI wndow.
And Line Means To Draw Line By Meet Points A and B....
line(int x1,int y1,int x2,int y2).....
A(x1,y1) Is a 1st point On BGI window
B(x2,y2) Is a 2nd Point On BGI wndow.
And Line Means To Draw Line By Meet Points A and B....
Hello World - Writing, Compiling and Running a C++ Program
When you write a program you use a development environment. Your development environment can be a basic text editor or a feature rich C++ integrated development environment (IDE). You should not use a word processor like Microsoft Word, because it adds formatting codes to the text.
"<iostream>" Is a Library.......
"cout" means Console Output.....
Code.......
"<iostream>" Is a Library.......
"cout" means Console Output.....
Code.......
Subscribe to:
Posts (Atom)