Monday, 18 May 2015

Write a Program in c++ which store the marks of five students in an array and then print all the marks.

Coding:- 


    #include<iostream.h>
void main()
{
 int marks[5]= {50,60,70,80,90};
int i;

 cout<<"the marks of students are: \n";

 for(i=0;i<=4;i++)

 cout<<"marks of " << i+1<<"student is :" << marks[i]<<endl;


}

Output:- 

    

Write a Program in c++ for function Overloading.

Program:- Find the volume of cylinder, cube and rectangular box.

Coding:- 

                     #include<iostream.h>


float volume(float r, float h)
{
float vol;
vol= 3.14*(r*r)*h;
return vol;

}


float volume(float s)
{
float vol;
vol=s*s*s;
return vol;

}

float volume (float l, float b, float h)

{
float vol;
vol=l*b*h;
return vol;
}


void main()

{
float radius, side , length, breadth, height , vol;
int option;
 do{
cout<<" \n enter 1 for cylinder, 2 for cube, 3 for rectangular box and 4 for exit ";

cin>>option;

switch(option)
{
 case 1 :    cout<<"enter the value of radius and height of cylinder\n";
 cin>>radius>>height;
 vol=volume(radius, height);
 cout<< "volume = "<<vol<<" cubic units \n";
break;

case 2: cout<<"enter the value of side \n";
cin>>side;
vol=volume (side);
cout<<"\n volume  = "<<vol<<" cubic unit";
break;


 case 3: cout<<" enter the value of length, breadth and height ";
cin>>length>>breadth>>height;
vol=volume(length,breadth,height);
cout<<"\n volume  = "<<vol<<" cubic unit";
break;

default:  cout<<"invalid entry ";
break;

}


}  while (option>0 && option< 4);

}

Output:- 

Wednesday, 13 May 2015

Write a Program in C++ which calculates the factorial of a number using recursion.

Coding:- 

#include<iostream.h>

int fact (int n)

{
int value=1;

if(n==1)

return(value);

else
{
                               value=n*fact(n-1);
                                return(value);
}

}
main()

{
int fact(int);

int f, n;

cout<<"enter a number=";

cin>>n ;

f=fact(n);

cout<<"factorial of a number is ="<<f<<"\n";


}

Output:-



Write a Program in C++ to generate first n fibonacci terms .

Write a Program in C++ to generate first n fibonacci terms .

Coding:-


                      #include<iostream.h>
 
int fib (int );                  //function prototype
main()

{
int n,i;

cout<<"how many fibonacci terms you want ? \n";

cin>>n;

cout<<"fibonacci terms are \n";

for(i=1;i<=n;i++)

cout<<fib(i);                //function calling

}

int  fib (int n)                    //function definition

{
 if (n==1)

return(0);

else
{
 if (n==2)

return(1);
else

return(fib(n-1)+fib(n-2));


}

}

Output:-

               

Calling Functions

How to Call a function:-  

-  In c++ programs, Functions can be invoked by two method:

- Call by Value.

- Call by reference method.

1:- Call by Value:-
                               In this call by method the value of actual parameter that are appearing in the function call are copied into the formal parameters which are appearing in function definition.

 The following Program illustrates this concept:-

Program:- Calculate of simple interest using a function.

Coding:-

                

#include<iostream.h>


int simpleinterest(float p, float r, float t);  // function prototyping
main()
{
float principal, rate , time;

cout<<" enter value of principal, rate and time";

cout<<"\n principal = "  ;
cin>>principal;

cout<<" \n rate = ";

cin>>rate;

cout<<"\n time = ";
cin>>time;

simpleinterest(principal,rate,time);    // function calling




}

int simpleinterest(float p, float r, float t)     // function definition

{
 float interest;

interest=(p*r*t)/100;

cout<<"\nSimple interest ="<<  interest;

}

Output:-
                  



2:- Call by Reference:- 
                                         A reference provides an alternative name for the variable, i.e the same variable's value can be used by two different names that is the original name and the alternative name. In this call by reference method, a reference method, a reference to the actual arguments in the calling program is passed. so their the called functions does not create its own copy of the original values but works with the original values with different name.

The following program illustrates this concept:

Program:- Write a program for swapping of two numbers using function call by reference method.

Coding:-




 #include<iostream.h>

         int swap(int & a,int & b);                                    // function prototype

              main()
 {
 int n1 , n2;

 cout<<"enter two values";


 cout<<"\n num 1=  ";
 cin>>n1;

 cout<<"\n num 2=  ";
 cin>>n2;

 cout<<"\n before swapping n1 = "<<n1;
 cout<<"\n before swapping n2 = "<< n2;

 swap(n1, n2);                                                  // function calling

 cout<<"\n after swapping n1 ="<<n1;

 cout<<"\n after swapping n2 "<<n2;


}

int swap(int & a,int & b)                                     //function definition

{
int temp =a;

a=b;

b=temp;

}

Output:- 

           


Introduction Of Function

Function:- 
                  A function in c++ groups a number of program statements into single unit and gives it a name. This unit or part of function can be called from the other parts of the program.

Advantages of functions in c++:-

1- A complex program can be divided into small sub tasks and functions subprograms can be written for each.

2- They are easy to understand.

3- It has the facility to defining a function in terms of itself i.e, recursion.

4- A function can be utilized in many programs by separately compiling it and loading them together.

 Syntax :-

                     type  name_of_function(parameter passing)

                    {
                             Body of the function

                         }

:- Program to display general message using functions:-



 #include<iostream.h>

 void main()
 {


 void displaymsg();    // Function Prototype


 displaymsg();        // Function Call



 }

void displaymsg()    // Function Definition

 {

 cout<<"welcome to the function part in c++ programming language" ;


 }

Output:-




-Function Prototype:-
                                      It is necessary to declare a function before its use, if your are using main part before function. it tell the compiler that the function would be referenced at a later stage in the program. It could be in main function or it could be outside the main function.

Syntax:-      
                      type name_of_function(parameter passing)

example from above program:-        void displaymsg();

Actual Parameter-  Actual Parameter are the variables  that are provided in the function call.

Formal Parameter- Formal Parameter are the variables that are provided in the function definition.


Recursion:-
                      In C++, a function can call itself, this is called recursion. A function is said to be recursive if there exists a statement in its body for the function call itself.

There are two program that illustrates the use of recursion:-

Write a Program in C++ to generate first n fibonacci terms .

-Write a Program in C++ which calculates the factorial of a number using recursion.

- Function Overloading:- Overloading means to use the same thing for different purposes. In C++, an overloaded function refers to a function having one name and more than one different meanings. So by using overloading functions we provide the same name for several functions.

There is a Program that illustrate the use of function Overloading.

- Write a Program in c++ for function Overloading.




Wednesday, 29 April 2015

Programs Collection of C++ Language

BEGINNING WITH C++ PROGRAM : 

There is some basic programs collection of c++ with there output. The best way to learn about programming language is by writing programs. There i had already discussed about the structure of c++ program (i.e Basic Structure Of C++ Program.).

 Basic Programs for beginning of c++ :

-Write a Program in C++ for Arithmetic Operation.

-Write a Program in C++for Addition of Two Numbers.

-Write a Program in C++ for Arithmetic Operation with different Values.

-Write a Program in C++ to Find the Area of Circle of given Radius.

Control Statements Programs:-

Write a Program in C++to Find the Greatest one using if statement.

-Write a Program in C++ to find the Greatest Number out of two number using if-else statement.

-Write a Program in C++ to Check the given Number for Even or Odd.

-Write a program in C++to Evaluate the Performance of a Student Using if- else- if statement.

-Write a Program in C++ to calculate Sum and Multiplication of Two Numbers if first value is greater then 2nd otherwise Print 'Sorry'.

-Write a Program in c++ to Print Number of Days in a Month using switch case.

-Write a program in C++ for Simulation of a Simple Calculator using Switch Case.
                                                                or
-Write a program in C++ for Simulation of a Simple Calculator using Switch Case.

-Write a Program in C++ to Calculate the area of the circle until radius entered is zero using While    Loop.

-Write a Program in C++ to Print first n Natural numbers and their sum using while loop.

-Write a Program in C++ to Print first n natural numbers and their sum using do-while loop. 

-Write a Program in C++ to Print first n Natural numbers and their sum using for loop.

-Write a Program in C++ to generate a patterns using for loop.

Functions in C++ :- 
 
-Introduction

-Write a program in C++ to Calculate of simple interest using a function call by value method.

-Write a program in C++ for swapping of two numbers using function call by reference method.

-Write a Program in C++ to generate first n fibonacci terms .

-Write a Program in C++ which calculates the factorial of a number using recursion.

-Write a Program in c++ for function Overloading.

Array in C++ :-

-Write a Program in c++ which store the marks of five students in an array and then print all the marks.

-Write a Program in c++to input the marks of five students in an array and then print all the marks. 

-Write a Program in c++ which read 6 no. from keyboard and store these no into array and then calculate sum of these no. using function.

-Write a program in c++ which initialize a two dimensional array and print all the elements in matrix form.

-Write a program in c++ to input the value in  two dimensional array and print all the elements in matrix form.

-Write a program in c++ which read two matrix and then print a matrix which is addition of these two matrix.


Structure in C++:-

-Declaration of structure, creating a structure variable,accessing member of structure. 
-Write a program in c++ to read and write in structure .
                                         or
-Write a program in c++ to read and write in structure .

-Write a program to calculate area of circle with structure and function 

-Array with structures