Tagged Questions
The strcpy tag has no wiki summary.
8
votes
5answers
353 views
Why does this intentionally incorrect use of strcpy not fail horribly?
Why does the below C code using strcpy work just fine for me? I tried to make it fail in two ways:
1) I tried strcpy from a string literal into allocated memory that was too small to contain it. It ...
6
votes
9answers
639 views
Why no sanity checks in legacy strcpy()
Following is the most popular implementation of strcpy in traditional systems. Why dest and src are not checked for NULL in the start? I heard once that in old days the memory was limited so short ...
6
votes
11answers
5k views
Why should you use strncpy instead of strcpy?
Edit: I've added the source for the example.
I came across this example:
char source[MAX] = "123456789";
char source1[MAX] = "123456789";
char destination[MAX] = "abcdefg";
char destination1[MAX] = ...
5
votes
8answers
522 views
strcpy works for char array but not char pointer
I'm perplexed as to why the following doesn't work:
char * f = "abcdef";
strcpy(f, "abcdef");
printf("%s",f);
char s[] = "ddd";
strcpy(&s[0], "eee");
printf("%s", s);
In both examples strcpy ...
5
votes
17answers
8k views
C strcpy() - evil?
Some people seem to think that C's strcpy() function is bad or evil. While I admit that it's usually better to use strncpy() in order to avoid buffer overflows, the following (an implementation of the ...
4
votes
0answers
195 views
strcpy valgrind invalid read of size [closed]
Possible Duplicate:
The valgrind reports error when printing allocated strings
I have code which simply copies string. I remember to allocate memory, but valgrind shows some errors and I ...
4
votes
4answers
215 views
what does the “const void*” mean in memmove?
The second arg in the prototypes for memmove/memcpy/strcpy are similar:
For example:
void *memmove(void *dest, const void *src, size_t n); //const void*
char *strcpy(char *dest, const char *src); ...
4
votes
7answers
240 views
strcpy string array
char copy, array[20]
printf("enter ..."):
scanf("%s", array);
if (strlen(array) > 20 )
{
strcpy(copy, array....);
what would I need to do to make it only grab the ...
4
votes
4answers
447 views
strcpy() return value
A lot of the functions from the standard C library, especially the ones for string manipulation, and most notably strcpy(), share the following prototype:
char *the_function (char *destination, ...)
...
4
votes
6answers
1k views
What is the difference between pointer and array in the following context?
#include <cstring>
int main()
{
char *pName = new char[10];
char dummy[] = "dummy";
strcpy(pName + 0,dummy);//how this is different from -->this works
...
4
votes
8answers
874 views
strcpy… want to replace with strcpy_mine which will strncpy and null terminate
the clue is in the title but basically I've inherited some code which has 800+ instances of strcpy. I want to write a new function and then to replace strcpy with strcpy_mine.
So I'm trying to work ...
3
votes
4answers
122 views
C++ copy std::string to char array with no null termination
I am writing to a binary file using a struct that just contains a char[32]. I basically need to format each block of data by performing various calculations on string arrays and concatenating the ...
3
votes
2answers
220 views
realloc memory in string array in C
I'm trying to satisfy valgrind and come up with a nice implementation, but I'm coming across a snag. Essentially what I'm trying to do is reduce two strings in an array to one. Let's say arr contains
...
3
votes
1answer
127 views
Why does C's strcpy fail with doubly indexed arrays?
The following code seems to segfault and I cannot figure out why.
#include <string.h>
static char src[] = "aaa";
int main()
{
char* target[2] = {"cccc","bbbbbbbbbb"};
...
3
votes
7answers
376 views
C++ Why isn't call by reference needed for strcpy()
I have a homework assignment with a number of questions. One is asking why the strcpy() function doesn't need the call by reference operator for CStrings. I've looked through the book numerous times ...
3
votes
3answers
372 views
Strcpy() corrupts the copied string in Solaris but not Linux
I'm writing a C code for a class. This class requires that our code compile and run on the school server, which is a sparc solaris machine. I'm running Linux x64.
I have this line to parse (THIS IS ...
3
votes
7answers
801 views
strcpy when dest buffer is smaller than src buffer
I am trying to understand the difference/disadvantages of strcpy and strncpy.
Can somebody please help:
void main()
{
char src[] = "this is a long string";
char dest[5];
strcpy(dest,src) ;
...
3
votes
9answers
5k views
Why must a pointer to a char array need strcpy to assign characters to its array and double quotes assignment will not work?
The first example does not work when you go to delete the pointer. The program either hangs when I add the null terminator or without it I get:
Debug Assertion Failed Expression: ...
2
votes
5answers
75 views
Why no segmentation fault on strcpy? [closed]
Possible Duplicate:
Undefined, unspecified and implementation-defined behavior
This should seg fault. Why doesn't it.
#include <string.h>
#include <stdio.h>
char ...
2
votes
7answers
167 views
invalid conversion from 'char' to 'char*' using strcpy
Ok so here are the parts of my code that I'm having trouble with:
char * historyArray;
historyArray = new char [20];
//get input
cin.getline(readBuffer, 512);
cout << readBuffer ...
2
votes
5answers
289 views
Converting char* to unsigned char*
How do I copy a char* to a unsigned char* correctly in C. Following is my code
int main(int argc, char **argv)
{
unsigned char *digest;
digest = malloc(20 * sizeof(unsigned char));
...
2
votes
2answers
413 views
Const char * vs const wchar_t* (concatenation)
which is the best way to concat?
const char * s1= "\nInit() failed: ";
const char * s2 = "\n";
char buf[100];
strcpy(buf, s1);
strcat(buf, initError);
strcat(buf, s2);
wprintf(buf);
It gives error. ...
2
votes
6answers
690 views
strcpy with malloc?
Please tell me if it is safe to do something like this:
#include <stdio.h>
#include <malloc.h>
#include <string.h>
int main(void)
{
char* msg;
strcpy(msg, "Hello ...
2
votes
5answers
2k views
strcpy v/s memcpy
What is the difference between memcpy() and strcpy()? I tried to find it with the help of a program but both are giving the same output.
int main()
{
char s[5]={'s','a','\0','c','h'};
char ...
1
vote
1answer
62 views
what is the reason for strcpy error
When I try to execute this program I am getting segmentation fault. What could be the reason?
#include<stdio.h>
#include<malloc.h>
#include<string.h>
#define UWT ...
1
vote
2answers
76 views
Proper way to empty a C-String
I've been working on a project in C that requires me to mess around with strings a lot. Normally, I do program in C++, so this is a bit different than just saying string.empty().
I'm wondering what ...
1
vote
3answers
291 views
strcpy() segmentation fault [closed]
Possible Duplicate:
Getting Segmentation Fault
Why does this code cause a segmentation fault?
char *text = "foo";
strcpy(text, "");
As far as I understand it, the first line allocates ...
1
vote
7answers
275 views
how to fix strcpy so that it detects overlapping strings
In an interview, I was asked to write an implementation of strcpy and then fix it so that it properly handles overlapping strings. My implementation is below and it is very naive..how do I fix it so ...
1
vote
3answers
152 views
C - why is strcpy() necessary
Can someone please explain to me why strcpy() is necessary to assign strings to character arrays, such as in the following code snippet.
int main(void) {
char s[4];
s = "abc"; //Fails
strcpy(s, ...
1
vote
4answers
105 views
Help with c errors
getting this error:
1>c:\users\b1021568\documents\visual
studio 2010\projects\tarefa42\tarefa
42\main.cpp(112): error C2664:
'cria_aluno' : cannot convert
parameter 2 from 'const char ...
1
vote
5answers
119 views
C: How to copy over null terminator to structure member, in cleaner way?
Essentially I am tokenizing a string and strncpying the string found to a structure member, i.e. stringid. It of course suffers from the problem of lack of termination, I have added an extra array ...
1
vote
3answers
250 views
strtok and strcpy error
i used strtok to split a string.
[ UPDATE ] used youre comments and answer for the new version below, but didnt work atm
int Crawl :: splitUrl(char ***tmp, int max_length, char *url)
{
int idx=0;
...
1
vote
7answers
272 views
Why my source is changing when using strcpy in c
After using strcpy source is getting corrupted and getting correct destination. Following is my code please suggest me why my source is getting corrupted? If i keep a fixed size to second character ...
1
vote
4answers
176 views
strncmp/strcpy corrupting source
today i was trying to get friendly with char * string... but it seems im failing :)
Every time i call strcmp/strncmp/strcpy function my source gets corrupted...
here is the snippet
#include ...
1
vote
5answers
419 views
Does a string created with 'strcpy' need to be freed?
Does a string created with 'strcpy' need to be freed? And how to free it?
Edit: The destination is allocated like this:
char* buffer[LEN];
1
vote
4answers
924 views
Alternative of strcpy in c++
In C i used strcpy to make a deep copy of a string, but is it still 'fine' to use strcpy in C++ or are there better alternatives which i should use instead ?
1
vote
4answers
222 views
Advantage of using strcpy function in C
void main()
{
char s[100]="hello";
char *t;
t=(char*)malloc(100);
strcpy(t,s);
}
Alternatively, we could assign s to t like this: t=s;. What is the disadvantage of using the ...
1
vote
1answer
177 views
Copy results of strtok to 2 strings in C
Ok, so I have the code
char *token;
char *delimiter = " ";
token = strtok(command, delimiter);
strcpy(command, token);
token = strtok(NULL, delimiter);
strcpy(arguments, token);
and it gives ...
1
vote
5answers
384 views
Program crash with pointers trying to make strcpy-like
This is my second problem today, pointers are giving me nightmares .
I'm trying to make a program that do the same thing that strcpy() function do..
Once i try it..it crashes and i'm 100% sure that's ...
0
votes
5answers
69 views
strcpy and strcmp, what am I doing wrong?
User should enter a few strings and input space as string when he is done.
Code should return longest and shortest word entered.
strcmp always returns -1... what am i doing wrong?
#include ...
0
votes
1answer
75 views
Using read() and putting the buffer into a string
this is my second question as i've had trouble with the first one due to this problem.
I have a file which i have to read using the read() statment, no no fget() or fread() etc
i use the line.
...
0
votes
1answer
35 views
How to store lines from a file into a dynamic array and print?
I need, in ANSI C, to open a file, to read all of its lines into a dynamically allocated array of strings, and to print the first four lines. The file may be any size up to 2^31-1 bytes, while each ...
0
votes
4answers
154 views
C++ Borland char * and strcpy
char *dum[32];
strcpy(&dum,InstList->Lines->Text.c_str());
InstList is a TMemo of C++ Builder
Why am i getting this error [C++ Error] emulator.cpp(59): E2034 Cannot convert 'char * *' ...
0
votes
5answers
203 views
C++ std::string alternative to strcpy?
I know there is a similarly titled question already on SO but I want to know my options for this specific case.
MSVC compiler gives a warning about strcpy:
1>c:\something\mycontrol.cpp(65): ...
0
votes
3answers
68 views
strcpy and strcat cause problems sometimes
hello I have a code like the one below
char *str ;
strcpy(str, "\t<");
strcat(str, time);
strcat(str, ">[");
strcat(str, user);
strcat(str, "]");
...
0
votes
2answers
138 views
Using strcpy with a string array in C
I have a character array defined as follows: char *c[20];
I'm trying to do: strcpy(c[k], "undefined); but it's not working
I've also tried defining it as char c[20][70] with no luck.
Edit: I ...
0
votes
3answers
95 views
Conceptual question regarding strcpy()?
Why is that strcpy() accepting char array prt even though the definition of strcpy is char * strcpy( char * , const char * ) ??
#include <stdio.h>
#include <string.h>
main()
{
char ...
0
votes
2answers
216 views
Why segmentation fault on implementation of strcpy?
I implement a simple strcpy, but when i run it , it always give a segmentation fault.
Please help!
Below is my code:
#include <stdio.h>
char* mystrcpy(char *dst, char *src){
char *ptr = ...
0
votes
4answers
172 views
segmentation fault around the strcpy
I know that you will rap me over the knuckles but.
Why does it make Segmentation fault
char* cmd;
strcpy(cmd, argv[0]);
when this doesn't
char *cmd;
cmd = "plop";
I didn't practice since a ...
0
votes
3answers
242 views
segmentation fault while doing strcpy()
I have a global structure:
struct thread_data{
char *incall[10];
int syscall arg_no;
int client_socket;
};
and in main()
char buffer[256];
char *incall[10];
struct thread_data ...