You meant to type:
std::cin>>collection[i];
And you also need to delete[]
collection
(or you’ll leak this memory).
It would be better use std::vector<std::string> collection;
and avoid the raw pointer usage altogether:
#include <iterator> #include <iostream> #include <string> #include <vector> int main() { const unsigned int wordsCollection = 6; std::vector<std::string> collection; std::string word; for (unsigned int i = 0; i < wordsCollection; ++i) { std::cin >> word; collection.push_back(word); } std::copy(collection.begin(), collection.end(), std::ostream_iterator<std::string>(std::cout, "\n")); }
Related Posts:
- Static array vs. dynamic array in C++
- How to make an array with a dynamic size? General usage of dynamic arrays (maybe pointers too)?
- Proper way to pass dynamic arrays to other functions
- How to dynamically allocate arrays in C++
- How to dynamically allocate arrays in C++
- How do I find the length of an array?
- Initializing an array of objects
- Passing an array by reference
- Return array in a function
- Passing an array by reference
- How to convert a char array to a string?
- What is the array form of ‘delete’?
- Use new operator to initialise an array
- How do I declare a 2d array in C++ using new?
- lvalue required as left operand of assignment – Array
- Is there a function to copy an array in C/C++?
- Cleanest way to copy a constant size array in c++11
- Reverse Contents in Array
- C++ error: “Array must be initialized with a brace enclosed initializer”
- warning: ISO C++ forbids variable length array
- c++ array – expression must have a constant value
- Passing a 2D array to a C++ function
- How to create a dynamically-allocated array of const objects, but have values assigned to them?
- Fill array with random numbers within a specified range (C++)
- Remove an array element and shift the remaining ones
- How to add element to C++ array?
- How to convert vector to array
- How to find the size of an int[]?
- C++: Expression must have a constant value when declaring array inside function
- splitting a string into an array in C++ without using vector
- What’s the syntax for declaring an array of function pointers without using a separate typedef?
- Printing an array in C++?
- Delete 2D array C++
- How do you initialise a dynamic array in C++?
- C++ array assign error: invalid array assignment
- How to add element to C++ array?
- Reading from .txt file into two dimensional array in c++
- extended initializer lists only available with
- Creation of Dynamic Array of Dynamic Objects in C++
- how to initialize an empty integer array in c++
- Check if C++ Array is Null
- Correct way to work with vector of arrays
- Resizing dynamic array in c++
- C++ Initializing a Global Array
- Comparing the values of char arrays in C++
- Dynamically allocated string array, then change it’s value?
- How can I assign an array from an initializer list?
- How do I return a char array from a function?
- creating an array of structs in c++
- Reading data from file into an array
- How to read lines of text from file and put them into an array
- Why can’t we pass arrays to function by value?
- Double pointer array in c++
- C++ pass an array by reference
- How to memset char array with null terminating character?
- creating an array of structs in c++
- C++ Array of pointers: delete or delete []?
- too many initializers for ‘int [0]’ c++
- C++ 2d char array to string
- Using cin for char array
- C++ correct way to return pointer to array from function
- Warning: comparison of distinct pointer types
- how to find 2d array size in c++
- Getting error “array bound is not an integer constant before ‘]’ token”
- Using cin to input a single letter into a char
- Different ways to deallocate an array – c++
- Is C++ Array passed by reference or by pointer?
- Array of Linked Lists C++
- C++ float array initialization
- How to convert string to char array in C++?
- How can I convert a std::string to int?
- Why is “using namespace std;” considered bad practice?
- What is a lambda expression in C++11?
- How to convert string to char array in C++?
- ld: symbol(s) not found for architecture x86_64 error
- C++ string to double conversion
- How do I reverse a C++ vector?
- Is there a C++ decompiler?
- What is a dangling pointer?
- undefined reference to WinMain@16 (codeblocks)
- Why am I getting this redefinition of class error?
- error: redefinition of class
- How to convert a std::string to const char* or char*
- Why doesn’t std::vector::push_front() exist?
- Fastest way to check if a file exist using standard C++/C++11,14,17/C?
- Invalid use of non-static member function c++
- C++ error: definition of implicitly-declared
- Already defined in .obj – no double inclusions
- expected unqualified-id before string constant
- C++: Access violation writing location
- What are the different versions of exec used for in C and C++?
- how to convert from int to char*?
- When is it safe to call this-> in constructor and destructor
- Unrecognizable template declaration/definition
- MSVCP120d.dll missing
- Modulo operator with negative values [duplicate]
- Struct with template variables in C++
- error: no member function declared in class
- Why does my program give “NULL used in arithmetic”
- no matching function to call for “getline”