Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In C++, the fundamental type of int on the PACE-ICE system uses 32 bits to represent an integer; however, you can extend this to 64

image text in transcribed

In C++, the fundamental type of int on the PACE-ICE system uses 32 bits to represent an integer; however, you can extend this to 64 bits by using another fundamental type in C+t called long long. (Please note that these sizes can vary from platform to platform and are not guaranteed in the C standard which we will talk about in class.) I would like for you to write a program to calculate the results of 5" for n-1,2, 3, 4,... using first the int type and then the long long type. Please empirically show the maximum value of n that can still store the results of 5" in an int, and long long variables without overflow. In addition to the main() function, to get practice using global functions, I would like for you to create two global functions to calculate the value of 5 These two global functions should have one argument that is an int n. The first should return an int, and the second should return a long long so that you can compare the ranges of these two data types. In your Labl folder, please call your source code lab1part1.cc. Sample output for this program up to 5 is shown below Please follow this output format; until one step past the maximum value 5 to the n power results using int 51-5 52 -25 53 = 125 5 to the n power results using long int 51-5 52-25 53-125

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Semantics Of A Networked World Semantics For Grid Databases First International Ifip Conference Icsnw 2004 Paris France June 2004 Revised Selected Papers Lncs 3226

Authors: Mokrane Bouzeghoub ,Carole Goble ,Vipul Kashyap ,Stefano Spaccapietra

2004 Edition

3540236090, 978-3540236092

More Books

Students also viewed these Databases questions

Question

2. What potential barriers would you encourage Samuel to avoid?

Answered: 1 week ago