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

  • Home
  • SEARCH
  • 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 6937929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:25:36+00:00 2026-05-27T12:25:36+00:00

I am new to c++ programming. I have read how parsing can be done

  • 0

I am new to c++ programming. I have read how parsing can be done in SO questions using vector(Int tokenizer).But I have tried the following for array. I am able to parse only one number from string. If input string is “11 22 33 etc”.

#include<iostream>
#include<iterator>
#include<vector>
#include<sstream>

using namespace std;

int main()
{

int i=0;
string s;
cout<<"enter the string of numbers \n";
cin>>s;
stringstream ss(s);
int j;
int a[10];
while(ss>>j)
{

    a[i]=j;
    i++;
}
for(int k=0;k<10;k++)
{
    cout<<"\t"<<a[k]<<endl;
}

}

If I give input as “11 22 33”

output

11
and some garbage values.

If i have initialized stringstream ss("11 22 33"); then its working fine. What am I doing wrong?

  • 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-27T12:25:37+00:00Added an answer on May 27, 2026 at 12:25 pm

    The problem is that:

    cin>>s;
    

    Reads one space separated word into s. So only 11 goes into s.

    What you want is:

    std::getline(std::cin, s);
    

    Alternatively you can read numbers directly from std::cin

    while(std::cin >> j) // Read a number from the standard input.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm relatively new to iPhone programming but have read my way through a hefty
I have an array being returned but as I'm new to programming I can't
I'm new to scripting, but I have a lot of experience programming in languages
I am very new to Android programming, and I have read everywhere and I
I have read countless blogs, posts and StackOverflow questions about the new features of
I'm very much new to programming and have been doing fairly well so far.
I am new to web programming...I have been asked to create a simple Internet
We have 2 new GIS programmer/analyst in our department (new to programming and ArcObjects)
I am just new to programming in Unix and have a small issue that
I'm new to microcontroller programming and I have interfaced my microcontroller board to another

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.