Thursday, 26 May 2016

Passing Array Through Function And Return Value To Main In C++ Code


Passing Array Through Function And Return Value To Main In C++ Code
















Pointers By Function In C++ Program

Pointers By Function In C++ Program











Code Is Given Blow Just Click On Read More :-



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 :-



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







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






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



Sorted Array By Slection Sorting In Dev C++


Sorted Array By Slection Sorting In Dev C++







C++ Code Is Given Blow
Just Click On Read More



Sorted Array By Bubble Sort Method In Dev C++


Sorted Array By Bubble Sort Method In Dev C++









Code Is 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



Making a Calculator By switch statement In Dev C++

Making a Calculator By switch statement In Dev C++



Output Shown Like This :




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

Two Dimensional Array C++ Program


If AnyOne Have Question Comment It.......








Array TO Enter Values From User And Show OutPut


Array TO Enter Values From User And Show OutPut.........



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....




Using For Loop Find The Sum Of Whole Numbers Given By User C++ Program

Write a Using For Loop Find The Sum Of Whole Numbers Given By User C++ Program





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.......