Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6928925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:15:08+00:00 2026-05-27T11:15:08+00:00

My code has this part which is throwing me an error for(int i=0;i<100;i++) {

  • 0

My code has this part which is throwing me an error

for(int i=0;i<100;i++)
{
s=s+",";

cout <<"string length is now "<<s.length<<endl;
}

I am simply appending the same string again and again 100 times to itself.
error is :

line 23: Error: Taking address of the bound function std::basic_string, std::allocator>::length() const.

could anybody tell me what is the wrong i am doing here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T11:15:09+00:00Added an answer on May 27, 2026 at 11:15 am

    It should be s.length(), not s.length:

    cout <<"string length is now "<< s.length() <<endl;
    

    Note that std::string::length() is a function, not a variable.

    I prefer .size() because it is consistent with all other containers. Other containers don’t have .length() member function; only std::string has this function, along with .size() which returns the same value.

    So if std::string has .size(), then why makes exception and use .length()? Why not use .size() consistently? I would you to suggest use .size() instead of .length():

    cout <<"string length is now "<< s.size() <<endl;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So this code has the off-by-one error: void foo (const char * str) {
bCrypt's javadoc has this code for how to encrypt a password: String pw_hash =
I was checking out this question which has this code - (NSArray *) percentagesRGBArray:(float[])
In my application I use the ShinyBlue.xaml resource dictionary which has this code for
hello i have this part of my code: static void Main(string[] args) { Console.WriteLine(Memory
This is part of cachegrind output. This part of code has been executed for
I got some legacy code that has this: <?PHP if(isset($_GET['pagina'])==homepage) { ?> HtmlCode1 <?php
This code has an interesting bug: some_struct struct_array1[10] = {0}; some_struct struct_array2[10] = {0}
My code has something like this: HttpFileCollection files Instead of looping through each file
I am looking at some code and it has this statement: ~ConnectionManager() { Dispose(false);

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.