Tagged Questions
13
votes
17answers
2k views
Why use c strings in c++?
Is there any good reason to use C-strings in C++ nowadays? My textbook uses them in examples at some points, and I really feel like it would be easier just to use a std::string.
2
votes
2answers
151 views
Returning a dynamic C style string from a function?
Basically I have a function that roughly looks like this and I need to return out.
const char* UTF16ToUTF8(const wchar_t *in) {
int tmp = wcslen(in);
int size_needed = ...
1
vote
4answers
108 views
Understanding C-strings & string literals in C++
I have a few questions I would like to ask about string literals and C-strings.
So if I have something like this:
char cstr[] = "c-string";
As I understand it, the string literal is created in ...
1
vote
2answers
176 views
C++ character array allocation error
I have a function designed to get a file's contents:
bool getFileContents(std::string loc, std::string &code) {
std::ifstream file(loc.c_str());
if(!file.is_open())
return ...
1
vote
4answers
808 views
converting c style string to c++ style string
Can anyone please tell me how to convert a C style string (i.e a char* ) to a c++ style string (i.e. std::string) in a C++ program?
Thanks a lot.
1
vote
7answers
277 views
Are c styled strings safe?
In c/c++ some people use c-styled strings like:
char *str = "This is a c-styled string";
My question is is this safe? The way I see it is they created a char pointer that points to the first letter ...
0
votes
6answers
131 views
How can I properly assign a char* in c++?
My c++ code looks like this:
char* x;
switch(i){
case 0:
x = '0';
case 1:
x = "1";
...}
I can't figure out how to make this work because for the ...
0
votes
5answers
113 views
Using a char* to store the correct file path
It has been a while since I messed with C/C++, and my memory of the available functions for working with a char* has gone out the window.
I currently use the following code to get the Current Working ...
0
votes
7answers
541 views
How can I check if a string has special characters in C++ effectively?
I am trying to find if there is better way to check if the string has special characters. In my case, anything other than alphanumeric and a '_' is considered a special character. Currently, I have a ...
0
votes
5answers
216 views
How to initialize c-strings array (no stl)
I want to initialize array of c-strings with zero pointers in MSVC2010
// Foo.h
#pragma once
class Foo {
int sz_;
char **arr_;
public:
Foo();
~Foo();
// ... some other functions
};
// ...
0
votes
4answers
883 views
Why does c_str() print the string twice?
So...
when I go:
cout<<stringName<<endl;
I get:
NT
But when I go:
cout<<stringName.c_str()<<endl;
I get:
NTNT
Why?