I am trying to get the size of an array populated by stdin:
char *myArray;
cin >> myArray
cout << sizeof(myArray);
This returns 4 when I enter a string greater with a length greater than 4 e.g. "40905898"
Where am i going wrong?
|
|
It's less error prone and easier to use. By the way, the thing you've tried to do is really dangerous. In fact, when you use A simple array in C++ has no idea about its size. You can use
Note that the total size of the array is printed on the first line, not the element count. You can use |
||||
|
|
|
sizeof(pointer) will always return 4. You want to use strlen(). Edit: IIRC, sizeof is evaluated at compile time, it only cares about the type, not the content. |
|||||
|
|
This is because myArray is a pointer that occupies 4 bytes. If you want to get the length of your string, use strlen or something similar. |
|||
|
|
|
It's because you are using sizeof() on a pointer, which is 4 bytes on your 32-bit computer:
If your array is a null-terminated string (the last element being a zero-byte, or '\0'), then you can use
to get the number of elements (minus one). E.g.:
You could also use a statically allocated array, like this:
|
|||
|
|
|
As others said, myArray is a pointer. But why wouldn't you use
If needed, you can get to a pointer representation of the string by using |
|||
|
|
|
As others said Additionally when you read from
The thing to note here is that In practice it's better to use an |
|||
|
|
|
You seem to have lots of problems here: myArray is not initialised - where is the input going to live? You usually use: cin >> myArray; (Note the direction of the chevrons and the semi-colon) sizeof(myArray) will always return the same value (4 on your platform) Try this version instead:
Its not without its own problems (I should have deleted myArray), so you should try the answers here that use |
||||