Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can someone please explain to me how I can fix this error I'm getting: error: 's' was note declared int this scope digits[i] = s.length()

Can someone please explain to me how I can fix this error I'm getting:

error: 's' was note declared int this scope

digits[i] = s.length() - '0'; ^

Here is my code:

BigInt::BigInt(string s) { if(s.length() > 100){ cout << "Size can't exceed 100!"; exit(1); } }

int BigInt::getLen() const { int i; for (i = 0; i < 100; i++) { digits[i] = s.length() - '0'; } len = s.length(); return len; }

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

Database Systems Design Implementation And Management

Authors: Peter Rob, Carlos Coronel

6th International Edition

061921323X, 978-0619213237

More Books

Students also viewed these Databases questions

Question

which of the following is an employee assistance program

Answered: 1 week ago