Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercise: Write a program sizeof.cpp that uses the sizeof operator to discover the number of bytes needed by short, int, and double variables (and print
Exercise: Write a program sizeof.cpp that uses the sizeof operator to discover the number of bytes needed by short, int, and double variables (and print out this information). For example, cout << short: << sizeof(short) << endl; Then extend the program to show the number of bytes needed for a pointer to a short, a pointer to an int, and a pointer to a pointer to a double. Your output should be:
short: 2
int: 4
double: 8
short*: 8
int*: 8
double*: 8
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started