Tagged Questions
The c-strings tag has no wiki summary.
21
votes
13answers
5k views
Why does simple C code receive segmentation fault?
The following code receives seg fault on line 2:
char *str = "string";
str[0] = 'z';
printf("%s", str);
While this works perfectly well:
char str[] = "string";
str[0] = 'z';
...
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.
11
votes
6answers
449 views
How to write a better strlen function?
I am reading "Write Great Code Volume 2" and it shows the following strlen impelementation:
int myStrlen( char *s )
{
char *start;
start = s;
while( *s != 0 )
{
++s;
}
...
8
votes
5answers
126 views
Dealing with returning C strings
What is considered better practice when writing methods that return strings in C?
passing in a buffer and size:
void example_m_a(type_a a,char * buff,size_t buff_size)
or making and returning a ...
6
votes
4answers
2k views
Is sprintf(buffer, “%s […]”, buffer, […]) safe?
I saw use of this pattern to concatenate onto a string in some code I was working on:
sprintf(buffer, "%s <input type='file' name='%s' />\r\n", buffer, id);
sprintf(buffer, "%s</td>", ...
5
votes
5answers
1k views
Are strtol, strtod unsafe?
It seems that strtol() and strtod() effectively allow (and force) you to cast away constness in a string:
#include <stdlib.h>
#include <stdio.h>
int main() {
const char *foo = "Hello, ...
4
votes
4answers
392 views
Can a std::string contain embedded nulls?
For regular C strings, a NULL signifies the end of data.
What about std::string, can I have a string with embedded NULLS?
4
votes
4answers
3k views
char array vs. char pointer
When receiving data through a socket using recv, I've noticed that, with:
char buffer[4];
memset(buffer, 0, 4);
recv(socket, buffer, 4, 0);
I receive
mesgx��
"mesg" being what I sent, with ...
3
votes
2answers
86 views
C For Loop Not Working?
I'm working with strings in C as character arrays, and I'm trying to ensure that I can dynamically pass values into my for loops.
The following code works, no problem:
for (int i = -6; i < 11; ...
2
votes
3answers
57 views
counting letters that make up words in a given sentence
I am trying to write a program to find how many 1-letter, 2-letter, 3-letter, 4-letter words exist in a given sentence, and I have finally come up with some code. However, there is a problem. The code ...
2
votes
4answers
98 views
Returning a String from function in C
char* clean_string (char *input_string){
/*Ensure that input string isn't null and only do heavy lifting if it's not null*/
if (input_string){
char *stripped;
stripped = ...
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 = ...
2
votes
5answers
426 views
Writing into c-string
my code segfaults and I don't know why.
1 #include <stdio.h>
2
3 void overwrite(char str[], char x) {
4 int i;
5 for (i = 0; str[i] != '\0'; i++)
6 str[i] = x;
7 }
8
9 ...
1
vote
1answer
40 views
Set Qt default encoding to UTF-8
In my Qt application my source code files are encoded as UTF-8. For the following code...
QMessageBox::critical(this, "Nepoznata pogreška", "Dogodila se nepoznata pogreška! Želite li zatvoriti ovaj ...
1
vote
4answers
82 views
snprintf, for integer to string conversion in C
I have a little piece of code to convert an integer to a string in c.
The code has to work on both 32-bits and 64 bits platform.
I am parsing arguments in a loop, so I need malloc to create the ...
1
vote
4answers
107 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
4answers
85 views
meaning of the statement
I have many times come across the statement char* ch = "hello";.
I understand that char* ch tells that ch is a pointer towards a char. But what does assigning hello to ch mean ?
I cannot undestand ...
1
vote
4answers
143 views
In C, how to remove all characters present in one array from another array?
In C, how to remove all characters present in one array from another array?
1
vote
3answers
373 views
join() or implode() in C
One thing I love about Python and PHP is the ability to make a string from array easily:
Python: ', '.join(['a', 'b', 'c'])
PHP: implode(', ', array('a', 'b', 'c'));
However, I was wondering if ...
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
3answers
167 views
In C, can I initialize a string in a pointer declaration the same way I can initialize a string in a char array declaration?
Do these two lines of code achieve the same result? If I had these lines in a function, is the string stored on the stack in both cases? Is there a strong reason why I should use one over the other, ...
1
vote
4answers
804 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 ...
1
vote
6answers
601 views
converting char** to char* or char
I have a old program in which some library function is used and i dont have that library.
So I am writing that program using libraries of c++.
In that old code some function is there which is called ...
0
votes
4answers
59 views
How do you iterate over an array of character arrays in c?
Do you have to manually loop through the array once and get a count of the strlen of each character array, sum it, allocate destination with the summed value and then loop over the array again?
How ...
0
votes
4answers
82 views
memset + whitespace + memcpy
How can i set a character array say of size 100 to whitespace and then copy 10 charters to that same string from other.
For example:
there is one char array a[100]
To do : set all of it to ...
0
votes
2answers
42 views
Using scanf to get a string to create and validate it against a while loop…keep getting
I'm creating a char* which essentially will be treated as an string. The string is suppose to be used over and over again. Everytime I'm attempting to check with the while loop and see if its correct ...
0
votes
1answer
12 views
error: request for member 'find' in '(cstring name)' which is of non-class type 'char [2000]'
I'm sorry if this is vague I'm still pretty new to programming(also new to forums >_>)
Ok, my code is supposed to read in a number from a file, then use that number to read in that amount of words as ...
0
votes
4answers
157 views
interesting strcmp implementation failure. (C)
I am working on a small project which I have no access to any C standard library.( building a microkernel in ARM structure from the scratch. Even printf had to be implemented )
Under this ...
0
votes
2answers
87 views
Why puts function doesn't work with input char from socket in C++?
This is my code for a server running a login manager, that log into a file the malicious access and print out the result of the wrong login.
The chars user and pass come from the user input using the ...
0
votes
5answers
101 views
Store two integers from a String in C
I am trying to write a program that prints two numbers from a string.
For example, string = '20,66' I am trying to break this string apart so I can store '20' and '66' into two separate variables.
...
0
votes
5answers
117 views
Why can't I edit a char in a char*?
Below is an exceedingly simple example. It compiles fine using gcc on Mac OS X (Snow Leopard). At runtime it outputs Bus error: 10. What's happening here?
char* a = "abc";
a[0] = 'c';
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
7answers
195 views
How do I concatenate multiple char strings in C? [closed]
Possible Duplicate:
C String Concatenation
How do I concatenate multiple char strings in C ?
Example:
const char *bytes = "tablr=Hello%20World";
const char *bytes2 = ...
0
votes
5answers
180 views
How do I return a variable size string from a function?
I need a working code for a function that will return a random string with a random length.
What I want to do would be better described by the following code.
char *getRandomString()
{
char ...
0
votes
5answers
203 views
strncpy or strlcpy in my case
what should I use?
char dst_arr[10];
char *dst_ptr;
char *src_str = "hello";
what should I use when I want to copy src_str to dst_arr and dst_ptr and why?
PS: my head is spinning faster than the ...
0
votes
5answers
112 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
2answers
151 views
regexec and regcomp more efficient than doing strncmp myself?
I have a string like this:
I am down in the town seeing a crown="larry" with a cherry="red"
I want to write a program that asks user what she wants. If she requests the string that should have ...
0
votes
7answers
539 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
2answers
99 views
C++0x Function delete - Delete all but certain types
In C++0x, I can do something like this:
double f(double x) { return x; }
template<class T>
T f(T x) = delete;
To prevent f() from being called on any other type than double.
What I'm ...
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
1answer
187 views
How to compare characters in c
I have a small project i am doing that requires comparing the first byte of a stream. The problem is that that byte can be 0xe5 or any other non printable character, and thus denoting that that ...
0
votes
4answers
492 views
Print part of a string in C
Is there a way to only print part of a string?
For example, if I have
char *str = "hello there";
Is there a way to just print "hello", keeping in mind that the substring I want to print is ...
0
votes
4answers
102 views
In C, how can a char* passed to a function be populated with text?
I am trying to create a C function which will return an int, but in the process will populate a char* passed in as a variable. A basic example of what I am trying is:
int myMethod(int input, char* ...
0
votes
3answers
126 views
Accessing/modifying an array of strings in a structure
Suppose I have the following code:
typedef struct
{
char **p;
} STRUCT;
int main()
{
STRUCT s;
*(s.p) = "hello";
printf("%s\n", *(s.p));
return 0;
}
which obviously doesn't ...
0
votes
1answer
79 views
Problems with this stack implementation
where is the mistake?
My code here:
typedef struct _box
{
char *dados;
struct _box * proximo;
} Box;
typedef struct _pilha
{
Box * topo;
}Stack;
void ...
0
votes
5answers
207 views
C: Missing some logic with the pointers stuff
I am writing my own string copy function. The following works:
char *src, *dest;
src = (char *) malloc(BUFFSIZE);
//Do something to fill the src
dest = (char *) malloc(strlen(src) + 1);
...
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?
-1
votes
3answers
108 views
Reverse a String
Basically I have a method that converts a decimal number to a number in a different base (ex, base 2), the element in position 0 of the array is the most significant, ex $100, The 1 is the most ...