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 7063633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:44:11+00:00 2026-05-28T04:44:11+00:00

I have the following problem. I have to implement a class that has an

  • 0

I have the following problem. I have to implement a class that has an attribute that is a char pointer meant to point to the object’s “code”, as follows:

class foo{
     private:
         char* cod;
         ...
     public:
         foo();
         void getVal();
         ...
}

So on, so forth. getVal() is a method that takes the code from the standard istream and fills in all the information, including the code. The thing is, the “code” that identifies the object can’t be longer than a certain number of characters. This has to be done without using customized buffers for the method getVal(), so I can’t do the following:

//suppose the maximum number of characters is 50
void foo::getVal()
{
     char buffer[100];
     cin >> buffer;
     if (strlen(buffer) > 50) //I'm not sure this would work considering how the stream
                               of characters would be copied to buffer and how strlen
                               works, but suppose this tells me how long the stream of 
                               characters was.
     {
        throw "Exception";
     }
     ...
}

This is forbidden. I also can’t use a customized istream, nor the boost library.

I thought I could find the place where istream keeps its information rather easily, but I can’t find it. All I’ve found were mentions to other types of stream.

Can somebody tell me if this can be done or where the stream keeps its buffered information?

Thanks

  • 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-28T04:44:12+00:00Added an answer on May 28, 2026 at 4:44 am

    yes using strlen would work definitely ..you can write a sample program

       int main()
       {
    
        char buffer[10];
        std::cout << "enter buffer:" ;
        std::cin >>buffer;
        if(strlen(buffer)>6)
        std::cout << "size > 6";
        getch();
       }
    

    for inputs greater than size 6 characters it will display size >6

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement the following: I have an Items Manager, that has an
I have the following tricky problem: I have implemented a (rather complicated) class which
I have following problem, Code: String a=Yeahh, I have no a idea what's happening
I have the following problem using template instantiation [*]. file foo.h class Foo {
I have the following problem: Suppose I have some basic counter class Counter .
I have a UIViewController subclass called TripViewController. This class has the following method: -
Problem description: I need to implement 2 classes like following: class A1 { common_method1();
I have a base class that has an abstract getType() method. I want subclasses
I have the following problem: I implemented a managed mobile application for Windows Mobile
I have following problem: I have built a tabbar application with 4 tabs. I

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.