Get premium membership and access questions with answers, video lessons as well as revision papers.
#include
#include
using namespace std;
long mystrtol(const char *s, char **end, int base = 10)
{
return strtol(s, end, base);
}
int main()
{
long x;
char *s1 ="100234 ";
char *p;
x = mystrtol(s1, &p,);
cout << "Base: "<x = mystrtol(s1, &p, 10);
cout << "Base 10: "<< x<< '\n';
x = (s1, &p); // use default base of 10
cout << "Base 10 byefault: "<< x<< '\n';
return 0;
}
Githiari answered the question on May 31, 2018 at 17:31
- Using the following class declaration, create a ten-element array, initialize num to the values 1 through 10, and itialize sqr to num's square.
#include
using namespace...(Solved)
Using the following class declaration, create a ten-element array, initialize num to the values 1 through 10, and itialize sqr to num's square.
#include
using namespace std;
class square {
int num, sqr;
public:
square (int a, int b) {num=a; sqr=b;}
voshow() {cout <};
Date posted: May 31, 2018. Answers (1)
- Using the following class declaration, create a ten-elment array and initialize the ch element with the values A through J. Demonstrate that the array does,...(Solved)
Using the following class declaration, create a ten-elment array and initialize the ch element with the values A through J. Demonstrate that the array does, indeed, contains these value.
#include
using namespace std;
class letters {
char ch;
public:
letters (char c) { ch = c; }
char get_c) { return ch;}
};
Date posted: May 31, 2018. Answers (1)
- Write a C++ program that uses new to dynamically allocate a float, a long, and char.Give these dynamic variable values and display their values. Finally, release...(Solved)
Write a C++ program that uses new to dynamically allocate a float, a long, and char.Give these dynamic variable values and display their values. Finally, release all dynamically allocated memory by using delete.
Date posted: May 31, 2018. Answers (1)
- Given the following program, convert all appropriate references to class members to explicit this pointer references.
#include
using namespace std;
class myclass {
int a, b;
public:
myclass(int n, int...(Solved)
Given the following program, convert all appropriate references to class members to explicit this pointer references.
#include
using namespace std;
class myclass {
int a, b;
public:
myclass(int n, int m,) {a=n; b=m;}
int add() {return a+b; }
void show();
};
void myclass::show()
{
t = add(); //call member function
cout <}
int main()
{
myclass ob(10, 14);
ob.show();
return 0;
}
Date posted: May 31, 2018. Answers (1)
- a) Show how to convert the following code into its equivalent that uses new.
char *p;
p= (char *) malloc(100);
//...
strcpy(p, "This is a test");
b)Using new, show how...(Solved)
a) Show how to convert the following code into its equivalent that uses new.
char *p;
p= (char *) malloc(100);
//...
strcpy(p, "This is a test");
b)Using new, show how to allocate a double and give it an initial value of -123.0987
Date posted: May 31, 2018. Answers (1)
- a)Create a class that contains a person's name and telephone number. Using new, dynamically allocate an object of this class and put your name and...(Solved)
a)Create a class that contains a person's name and telephone number. Using new, dynamically allocate an object of this class and put your name and phone number into these fields within this object.
b).What are the two ways that new might indicate an allocatn failure?
Date posted: May 31, 2018. Answers (1)
- What is wrong with following program?
// This program has an error.
#include
using namespace std;
void triple(double &num);
int main()
{
double d = 7.0;
tripe(&d);
cout << d;
return 0;
}
//...(Solved)
What is wrong with following program?
// This program has an error.
#include
using namespace std;
void triple(double &num);
int main()
{
double d = 7.0;
tripe(&d);
cout << d;
return 0;
}
// Triple num's value.
void triple(double &num)
{
num = 3 * num;
}
Date posted: May 31, 2018. Answers (1)
- Write a C++ function called neg() that reverses the sign of its integer parameter.Write the function two ways-first by using a pointer parameter and then...(Solved)
Write a C++ function called neg() that reverses the sign of its integer parameter.Write the function two ways-first by using a pointer parameter and then by using a reference parameter.Include a short program to demonstrate their operation.
Date posted: May 31, 2018. Answers (1)
- List and explain four editing features found in word processor
(Solved)
List and explain four editing features found in word processor
Date posted: May 23, 2018. Answers (1)
- Explain the advantages of a computer network?(Solved)
Explain the advantages of a computer network?
Date posted: May 16, 2018. Answers (1)
- Explain types of malware in computer protection(Solved)
Explain types of malware in computer protection.
Date posted: May 16, 2018. Answers (1)
- What is a malware in computer protection?(Solved)
What is a malware in computer protection?
Date posted: May 16, 2018. Answers (1)
- Explain how to set password for Microsoft Excel Workbook?(Solved)
based on Microsoft Excel Workbook
Date posted: May 16, 2018. Answers (1)
- Explain how to set a password for a Microsoft word document?(Solved)
Explain how to set a password for a Microsoft word document?
Date posted: May 16, 2018. Answers (1)
- Explain how to recover and empty files from the computer recycle bin?(Solved)
Explain how to recover and empty files from the computer recycle bin?
Date posted: May 15, 2018. Answers (1)
- Giving examples explain dual booting in computers?(Solved)
Giving examples explain dual booting in computers?
Date posted: May 15, 2018. Answers (1)
- Explain how to clean temporary files and history with free software for windows?(Solved)
Explain how to clean temporary files and history with free software for windows?
Date posted: May 15, 2018. Answers (1)
- Define the following terms as they are used in Desktop publishing and graphic design.
a. WYSIWYG
b. RGB
c. LOGO
d. BLEED
e. ZOOM
f.RMM...(Solved)
Define the following terms as they are used in Desktop publishing and graphic design.
a. WYSIWYG
b. RGB
c. LOGO
d. BLEED
e. ZOOM
f.RMM (with reference to memory).
g.EBCDIC
Date posted: May 11, 2018. Answers (1)
- Name at least five Objects you can insert in a word document using Insert TAB.(Solved)
Name at least five Objects you can insert in a word document using Insert TAB.
Date posted: May 11, 2018. Answers (1)
- Contrast and proximity are exemplified as the principles of design most useful to a desktop publisher. How are they applied? (Solved)
Contrast and proximity are exemplified as the principles of design most useful to a desktop publisher. How are they applied?
Date posted: May 11, 2018. Answers (1)