The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
26 views

undefined reference to `strcpy_s' can't compile

i follow the book and can't compile this example. Any suggestions? Thank you in advance. 1 #define __STDC_WANT_LIB_EXT1__ 1 2 #include <string.h> 3 #include <stdio.h> 4 5 6 ...
2
votes
5answers
66 views

Will delete[] after strcpy cause memory leak?

char* myChar=new char[20]; char* myChar2="123"; strcpy(myChar, myChar2); ... delete[] myChar; My question is if strcpy puts a '\0' at the end of "123", then will delete[] myChar only delete the ...
-7
votes
4answers
95 views

Why does initializing char array to output of function returning char* not compile? [closed]

Why is char name[20]="Solyent"; compiling fine and assigning "Solyent" to name[] but the declaration-cum-initialization below not working ? char name[20]=strcpy("Solyent","Heston"); Why isn't ...
0
votes
2answers
55 views

Why is strcpy(strerror(errno),“Hello”) not copying “Hello”,but {ptr=strerror(errno);strcpy(ptr,“Hello”);} does?

Please explain what's going on in the following program. I checked out the addresses returned by strerror(errno) at the beginning and end of the program and it confirms that it returns the same ...
0
votes
5answers
49 views

strcpy() of a small string into a bigger string leaves the rest of the bigger string unchanged.How to deal with it?

Here in this sample program to illustrate this behavior of strcpy(),I wrote a string "S" into a bigger string previous which original had "Delaware".But this overwriting only affects the first two ...
0
votes
2answers
45 views

expected identifier or '(' error when assigning variables to members of a struct array

Here is the header file im using: typedef struct room room; struct room { char name[21]; int num_doughnuts; int num_milkshakes; room* portal[4]; }; and my code: struct room* ...
0
votes
4answers
60 views

Strcpy: behaving more like 'strcut'

char a[3], b[3]; strcpy(a,"abc"); printf("a1 = %s\n", a); strcpy(b,a); printf("a2 = %s\n", a); printf("b = %s\n", b); From how I understand strcpy to work the output would be: a1 = abc a2 = abc ...
1
vote
4answers
60 views

C strtok and strcpy

I have a text file, similar to the following: Name1: ID1 Name2: ID2 Name3: ID3 I am trying to parse it to get Name1 Name2 Name3 stored in a variable. I wrote the following function: /* * ...
0
votes
2answers
24 views

Dynamic Allocation from input file

Consider the following: typedef struct wordType { char word; uint count; }; int main( void ) { typedef struct wordType * WORD_RECORD; WORD_RECORD arrayOfWords = malloc(10 * sizeof( ...
1
vote
1answer
36 views

function crashes when reading in a csv file

I have coded a function to read in a csv file but half way through the parsing the program crashes giving me errors in strcat.The errors are at the third field which is phone.I can't spot the error I ...
0
votes
1answer
85 views

c++ c-strings, strncat, strncpy

This program is supposed to input someones name and output it like " Last, first middle". The names are supposed to be stored in 3 different arrays and their is a fourth array for the full name at the ...
0
votes
2answers
45 views

how to write data within malloc memory in C

Suppose I have void * space= malloc(500) //alloc a block of memory and I need to write two strings and an int: "Hello world", "Goodbye friend",5 in memory address 50,150,380, correspondance to ...
0
votes
1answer
43 views

Why does VS throw an error when compiling an uninitialized string used in a strcpy function?

I was curious to know why the following code snippet works in some C compilers and not others. My professor can compile this code in DevC++ and so can I, but I can not compile this code in VS 2010. ...
-1
votes
5answers
106 views

Reverse words in C Language

I'm trying to reverse the letters for words in a sentence. I am also trying to store these words in a new char array. At the moment I getting a runtime error, which for all my tweaking I can not ...
0
votes
1answer
37 views

Issue writing to an array of strings

Having had issues with a slightly more complicated section of code, I've stripped away at it, but still the error remains. Could you cast a cursory eye over this and point out my errors? //before ...
2
votes
2answers
172 views

strcpy c++ cannot convert parameter 1 from string char*

i am trying to put the words that there are in a txt file* into an array of strings. But there is an error with the strcpy(). it sais: 'strcpy' : cannot convert parameter 1 from 'std::string' to 'char ...
-1
votes
3answers
47 views

Trouble with strcpy [closed]

I'm terrible with C, and am having trouble with strcpy. I'm trying to grab one of the function arguments and store it in a char array. When I run this, I get a segmentation fault, but I don't see why. ...
0
votes
1answer
80 views

strcpy() segmentation fault in 2-dimensional char** array

I'm currently programming a shell which grabs input and stores it in a string (char*) array. To enable UNIX operations like pipelining, I want to be able to write commands like echo this | function ...
0
votes
4answers
74 views

What should we use as the second argument of std::strcpy?

I have the following example, taken from here: // strings and c-strings #include <iostream> #include <cstring> #include <string> int main () { std::string str ("Please split this ...
1
vote
1answer
67 views

C Compiler Pointless Errors?

I have the following code written in C: n. struct UDSData { char *name; char *address; }; n. char UDS1[16] = "fill up sixteen", UDS2[16] = "fill up sixteen"; n. while ...
0
votes
1answer
47 views

Segementation Fault with strcpy

Constants: #define MAX_OPCODE_NAME_LEN 4 I have an array of structs: OPCODE *mot[NUM_OPCODES]; Struct def: typedef struct opcode { char name[MAX_OPCODE_NAME_LEN + 1]; char format; int type; } ...
1
vote
2answers
89 views

strcpy () not working properly

I am currently writing a program where i was stuck in a different kind of behaviour of strcpy() function . Here is short demo of it... I went through the following question : Strip first and last ...
0
votes
4answers
128 views

C++: Appending to a vector string

I'm writing a "pig latin" program; read input from the users (first name and last name,) make the input lowercase and change the name depending upon what was in the name. If the first letter (of both ...
0
votes
2answers
60 views

read from binary file and copy into array

its time over but anyway i want finish this problem. I want read binary file to buffer and later i want copy this buffer to array. I'm doing like that; int i=0; char *buffer; buffer=(char ...
1
vote
3answers
102 views

Using strcpy function in C, without knowing the length

Im trying to write a simple function that get name and return it after adding an extension to it. for example, if i have the char pointer to "abcd" the function should return "abcd.as" I tried to ...
0
votes
1answer
88 views

strcpy corrupts char array (string value)

The function below tries to order strings on a linked list in ascending order. When it returns the new list, it becomes corrupted. void* order( void *ptr){ struct wordlist *head; head = ...
-1
votes
4answers
81 views

recursive strcpy function [duplicate]

#include <stdio.h> char *strcpy_r(char* s, char* t); int main() { char *s = {"Bob"}; char *t = {"Billy"}; char *ptr; ptr = strcpy_r(s, t); printf("%s\n", ptr); return 0; } char* ...
0
votes
3answers
97 views

How to copy the string into the array of strings with strcpy?

I'm trying to copy a string into an array of strings, but it doesn't work. I know it is a problem due to memory allocation but I don't see how I could make it work as STRING_LENGTH is a constant. ...
0
votes
3answers
163 views

Segmentation Fault - strcpy() - C

I'm implementing a history feature for a command line shell. I've implemented a circular array to hold to ten most recent commands. Each command is also labeled by an integer specifying which total ...
0
votes
1answer
86 views

2d array of strings and Strcpy fault?

I'm having a problem with assigning values to a 2d array of strings. Here's what the code: Char array[]= "Nary had a little lamb"; int chunkSize = 4; char inventory[totalRuns][chunkSize]; ...
2
votes
1answer
94 views

SEGMENTATION FAULT in strncpy - load from dictionary

I have this function "load" where I read words from a dictionary and put them in an hashtable of linked lists. When I try to read a line and save it in my new_node->text the compiler returns ...
0
votes
2answers
174 views

using strcpy for copying string into the element at index retrieved with atoi

Here's the code, which is supposed to execute the first command in history when "history 1" is entered: #include <stdio.h> #include <stdlib.h> #include <string.h> int main (int ...
2
votes
1answer
112 views

Using strcpy with std::vector

I have some trouble using strcpy with a vector of instances of my own class. Here's the class: class elemente { char name[5]; short val; bool red; }; So, I made a vector from ...
0
votes
4answers
170 views

Will memcpy copy a string correctly?

I am working on implementing some low-level file writing, where the file format is specific down to each bit. I need to copy a string from an NSString into null-terminated string with length 16 (which ...
0
votes
3answers
77 views

What's wrong with this strcpy with pointers function?

I've been tearing apart my program for hours trying to find the program. I've finally limited it to just a couple lines of code, but still I'm still stupid (or tired) to find the issue. All it is is ...
0
votes
3answers
39 views

Need explanation of Word2 variable

I DO UNDERSTAND THAT THIS PROGRAM IS NOT ALLOCATING ENOUGH MEMORY. What I need help with is describing an explanation of what happens when this code is executed. I put "Since only 4 spaces are ...
-2
votes
7answers
249 views

Does C have a string type? [closed]

I have recently started programming in C, coming from Java and Python. Now, in my book I have noticed that to make a "Hello World" program, the syntax is something like this: char message[10] ...
0
votes
2answers
125 views

strcpy char pointer abort [closed]

I have this code: char **arr; char* line=NULL; int i=0; size_t len=0; ssize_t read1; fp=fopen("list.txt","r"); if(fp==NULL) exit(EXIT_FAILURE); ...
1
vote
4answers
192 views

Strcpy implementation in C

So, I have seen this strcpy implementation in C: void strcpy1(char dest[], const char source[]) { int i = 0; while (1) { dest[i] = source[i]; if (dest[i] == '\0') break; i++; } } ...
2
votes
3answers
846 views

strcpy vs strdup

I read that strcpy is for copying a string, and strdup returns a pointer to a new string to duplicate the string. Could you please explain what cases do you prefer to use strcpy and what cases do you ...
1
vote
2answers
194 views

Comparing 2 Strings, one in a struct other not C programming

I have this database and I Need to check whether a Product Name is already in the database otherwise I ask the user to input another one. The problem is this: I'm trying to compare a string (the ...
0
votes
0answers
36 views

Easy Method Of Linking DLL & Application (Expanded)

I have expanded this question in contrast to my previous one. I have an application which I want to link to a DLL. The main application is a quiz game that contains the groundwork of the program ...
2
votes
2answers
261 views

C strcpy = Unhandled exception: Access violation writing location 0x00000000

I have a problem with strcpy function. Using C. Main point of this simple code (below) is copying a string from a array to the array of pointers. char string[20] = "ABCDEFGH\0"; char * ...
3
votes
1answer
406 views

Implementation of strcpy and strcat that get a reference of a pointer bug [duplicate]

Possible Duplicate: Any better suggestions for this c functions copyString,concatString This is a question form a job interview , I need to implement it with a specific signature this is ...
1
vote
1answer
153 views

strcpy not copying the full string

I'm using Visual C++ 6.0, and I have the code below. char filename[1000], string[5]; FILE *fin; strcpy(filename, argv[3]); if ((fin = fopen(filename, "r")) != NULL) { fgets(string, 100, fin); ...
1
vote
4answers
132 views

Buffer too small during object construction. Think it has something to do with strcpy_s() [closed]

The code that I am putting up is the result of the third week of working on this class. I had a pretty good handle on things, (or so I thought), but this week is focusing on pointers and I am clueless ...
0
votes
2answers
199 views

Invalid read of size 1 Strcpy

I keep getting a valgrind error of Invalid read of size 1 and i can't determine why. What is causing the error? ==24647== Invalid read of size 1 ==24647== at 0x40258EA: strcpy ...
2
votes
2answers
194 views

Copy Array of strings in C error

I want to save about 20 country names into one string and then copy them to another but it always do me some mistake, can anybody help me with it? This is my code: char array1[30][30], ...
0
votes
3answers
108 views

Segmentation fault in string copying

I'm getting the segmentation fault error for the inner while loop. char **c; c=(char **)malloc(3*(N-1)*sizeof(char *)); for(int i=0;i<3*(N-1);) { char *temp; gets(temp); ...
1
vote
2answers
63 views

Deleting information within an application in C

Ive got a phonebook app that the user can enter in contact information, and it will show up in the phonebook. I have a delete function that allows the user to search via the last name and delete the ...

1 2 3 4