LLSinfo

Power By Dholu Production

Responsive Ads Here

Tuesday, April 24, 2018

undefined 201

Write a prg to find the mean value of given number using friends functio|C++

#include<iostream>using namespace std;class sample{    float x,y;    public:    float get()    {        cout<<"Enter x="<<endl;        cin>>x;      ...
undefined 201

Write a prg to implement function overloading and return volume of cube, cylinder, rectangular box|C++

#include<iostream>using namespace std;float vol(float);float vol(float, float);float vol(float, float, float);float vol(float a){    return(a*a*a);}float vol(float R, float H){    return(3.14*R*R*H);}float vol(float L, float B, float H1){    return(L*B*H1);}int main(){   ...
undefined 201

WAP to illustrate the concept of call by reference|C++

#include<iostream>  using namespace std;    void swap(int *x, int *y)  {   int swap;   swap=*x;   *x=*y;   *y=swap;  }  int main()   {     int x=500, y=100;     swap(&x, &y); ...
undefined 201

WAP to illustrate the concept of call by value|C++

CODE: #include <iostream>  using namespace std;  void change(int data);  int main()  {  int data = 3;  change(data);  cout << "Value of the data is: " << data<< endl;  return 0;  }  void change(int data)  {  data = 5;  }...
undefined 201

WAP for function with default arguments|C++

CODE: #include<iostream>using namespace std;float ar(float R ,float Pi=3.14){ return(Pi*R*R);}int main(){    int r;    cout<<"To Find Area Of Circle \n Enter The Value Of Redious :";        cin>>r;    cout<<"Area...
undefined 201

Write a program to implement arithmetic operations using INLINE function|C++

CODE: #include<iostream>using namespace std ;inline int sum(int a,int b) {  return(a+b); }inline int sub(int a,int b) {  return(a-b); }inline int mul(int a,int b) {  return(a*b); }inline float div(float a,float b) {  return(a/b); }int main(){ int...

Monday, April 23, 2018

undefined 201

Write a program to print sum of series 1+3+5+...+N using function|C++

CODE: #include<iostream>using namespace std;int display(int S,int N){ int i;  cout<<"Series "; for(i=1;i<=N;i=i+2)   cout<<i<<"+"; cout<<"=" ; cout<<S<<"\n" ; return 0;}int main(){ int i,n,sum=0,r; cout<<"\t Sum Of 'N'...

Wednesday, March 21, 2018

undefined 201

How to Hack Someone's WhatsApp Without Their Mobile Phone | Tricks

How to Hack Someone's WhatsApp with Mac Address of the Target Devices Let's See This Artical In which we will need the MAC address of the target mobile, BusyBox app and Terminal emulator app. You can download both the BusyBox and the Terminal emulator from the Google Play Store. With these three necessities at hand,...

Wednesday, January 10, 2018

undefined 201

C++ In HIndi by Kuldeep Chand | E-book

C++ In HIndi by Kuldeep Chand | E-book Table of Contents 1.OOPS and C++ ................................................................................ 11 2.OOPS with C++ ................................................................................ 31 3.Arrays and Strings ..........................................................................154 4.Functions...
undefined 201

C++ Programing - World EBook Library | E-book

C++ Programing - World EBook Library | E-book Contents Contents............................................................................ vi Preface .............................................................................xi Intended Audience................................................... xi Structure...
Page 1 of 1312313Next