Tagged Questions
21
votes
13answers
5k views
Why do I get a segmentation fault when writing to a string?
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
463 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
130 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
3k 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
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
88 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
75 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
102 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
5answers
438 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
2answers
64 views
Are string literals constant or not? [closed]
Possible Duplicate:
Is it possible to modify a string of char in C?
char *s = "anusha";
Is this like a constant pointer? When i tried to change the character in location 3 by writing ...
1
vote
4answers
85 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
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
147 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
395 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
3answers
175 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
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
615 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
48 views
passing of strings in C function
i have the following problems in C programming.
I have an array of strings stored as words[10][50]. I want to extract each of the string from the array and then pass it on to another function. I ...
0
votes
4answers
71 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
93 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
48 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
4answers
189 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
105 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
123 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
7answers
216 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
206 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
240 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
2answers
163 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
1answer
207 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
579 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
144 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
209 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);
...
-1
votes
3answers
111 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 ...