Tagged Questions

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; } ...
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 = ...
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
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
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
158 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
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
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
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); ...