The tag has no wiki summary.

learn more… | top users | synonyms

-3
votes
6answers
88 views

How to combine three char to one

I had three char inside the array , which contain X1 X2 and X3 char array[3]={X1,X2,X3} I want to combine three data which inside the array to one char strcat(array[0]," "); ...
0
votes
0answers
40 views

Strange character intercepted between strcat callc

I'm working with C in CentOS6. When I use strcat, it puts strange characters between strings such as 'H', 'P', '@'. Unfortunately, I cannot show my full source, because it is corporate property. ...
-1
votes
5answers
110 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
21 views

STRCAT Code builds, runs but crashes out

I am running through some basic tutorials on C, using Code::Blocks. Can anyone help me out with the following code, with some explanation? It builds but crashes when run. #include <stdlib.h> ...
1
vote
1answer
84 views

gdb claims realloc() or free() corrupt memory while valgrind claims non-null terminated array run off…which is it?

Background I am working on a program where a thread, which is spun off a main thread, parses email logs and organizes each entry by the QID, an ID unique to each message. Problem The program was ...
0
votes
3answers
63 views

strcat C not printing and int to char*

I'm trying first to generate a random number and cast it to a string. It does it properly but the compiler gives "warning: cast to pointer from integer of different size". And then, the main issue ...
0
votes
3answers
77 views

c program How to create multiple a text file in strcat

How to create multiple a text file in strcat In my case, for example i input three name ./test paul tony john , so i use strcat to add ".dat" but i cannot set three name is paul.dat tony.dat ...
-2
votes
1answer
50 views

strcat into char[]

I am using argp in a program and it uses a globally defined char doc[] to display information about the program. Apart from program information, I want to add a GPL notice to this doc. The GPL ...
0
votes
1answer
46 views

Assembling a c string and returning it by reference (using malloc and string.h functions)

I want to assemble some sort of a HTTP header (its just a fun project im doing). But my problem is more about on how to do that in C. I have a function like this: void assembleResponse(char ...
1
vote
6answers
64 views

revert to null after strcat

I am trying to strcat a pathname to pass to fopen to create multiple filenames in a while loop. char path[30]=""; while(!feof(stdin)) { strncat(path,folder,8); strcat(path,filename); ...
0
votes
3answers
60 views

strncat looks like its preserving data across calls?

I am seeing some odd behavior out of the strncat function in the string.h standard library, and would like some help understanding what is going on. The crux of my issue is in a function I created ...
2
votes
1answer
47 views

strtok and strncat error

I want to add string "ay" to each word by using both strtok and strncat. But there seemed to be a conflict somewhere that I cannot find. It only gives me the first word "Computeray" for an output. ...
1
vote
4answers
165 views

Most efficient way to use strcat() with a string and int?

I'm try to concatenate to char * rv with the result of a function call that will return an int. fib() returns an int. The main problem I'm running into is that strcat()'s signature requires a const ...
-2
votes
2answers
72 views

Programming segfaulting in strcat()

I am trying to write a web server in C and my code is segfaulting at the moment and I have no idea why. It seems to have something to do with my strcats but thats as far as I've been able to get. I ...
0
votes
4answers
134 views

strcat alternative issue C++

I am working on a project which was initially sampled in C but want to work on it in C++. There is a section where a strcat() is used, I have been told to use an alternative. I have found one here, ...
0
votes
1answer
42 views

strcat not flushing

I have this code in arduino void function(int x){ char* response="GET /postTEST.php?first="; char strx[2] = {0}; int num = x; sprintf(strx, "%d", num); original=response; ...
0
votes
1answer
72 views

strcat and segmentation fault 11

my code is as follows: #include<stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> int string_length(char*); void reverse(char*); int ...
-4
votes
1answer
126 views

Struggling with strcat function in C

I am really frusted with my program right now. I expect that the strcat function would simply concatenate the desired strings together but apparently the strcat function (when uncommented) doesn't get ...
0
votes
5answers
92 views

Dynamic sized string in C

I have the following code and to edit the string of a "path" that I will be working on in a program that I am creating. My problem is that I the code works, but I have no idea why or to be clearer I ...
-1
votes
1answer
150 views

append const char variables wih string

I have 2 integers, whom I converted to const char* by passing to a user defined function. Now I want to append these 2 variables into a command line string as "gnome-terminal -x sh -c 'cd; cd ...
0
votes
2answers
57 views

strcat not working properly in operator overloading

I'm practicing operator overloading but I'm not able to put it through correctly. Can any one tell me what wrong I am doing here. I don't understand why strcat is not concatenating two string. ...
-2
votes
2answers
48 views

My strcat doesn't return a value?

I coded a strcat function. But my function doesn't run in this way -----> char * mystrcat(char *s,char *t). I want to return a pointer. Can you help me? #include <stdio.h> void mystrcat(char ...
-13
votes
1answer
203 views

Add two strings without strcat? [closed]

I wrote question in title. Example: str1[20]="Wassup Man? " str2[20]="Thanks dude!" addstr[30]="Wassup Man? Thanks dude!"
0
votes
2answers
120 views

Octave strcat ignores added spaces

Octave adds spaces with strcat In Octave I run these commands: strcat ("hel", " ", "lo") I get this result: ans = hello Instead of what I expected: ans = hel lo strcat to me sounds like ...
0
votes
3answers
104 views

Seg fault on strcat

So I'm getting a seg fault in my code, and I just can't seem to figure out what is causing it. Is anyone able to catch something that I was not? Logically I'm trying to create a char array (a string) ...
0
votes
4answers
62 views

strcat() won't exit

I'm trying to implement a very basic server in C, one part of which is constructing HTTP headers. To do this I have written a class called header_builder, which basically constructs the headers for ...
3
votes
1answer
435 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
2answers
135 views

C Segmentation Fault, multiple warnings [closed]

This is my first post on stackoverflow and I hope I am not breaking any rules or reposting. I have looked for the answers to my warnings. While I can find some kind of similar instances, I cannot get ...
0
votes
0answers
201 views

matlab: legend; CAT arguments dimensions are not consistent

I have a weird problem... I can't make legend: Lets say I have: fraction1Str = strcat('F1 = ', sprintf('%g',round(fraction1*100)/100), '+/-',sprintf('%g',round(fraction1STD*100)/100)); ...
1
vote
1answer
61 views

C Realloc Append String MySQL Connector

I am attempting to loop through each database result, and have a single field from each row comma separated in a final string. I am aware that this is possible to do in MySQL alone, but I need to run ...
1
vote
4answers
300 views

strcat with char pointers

So, my problem is simple, I whant to create a function to separate the words in the file and parse those words and create an special think for those words, but, I have an error in strcat, when I try ...
0
votes
3answers
84 views

I'm having problems appending the value of a char variable to a string in C

I've been trying to use strcat(array, &charVariable) to add charVariable to array, when i display the array it displays this â• â• â• â• â• â• â• â• . can anyone help me out?
0
votes
4answers
179 views

How to use strcat with a char* of an unspecified length

#include <stdio.h> #include <string.h> char* changeString(char *inputString); int main() { printf("Changed string is %s\n", changeString("42")); } char* changeString(char ...
3
votes
3answers
53 views

Is there anyway to check the success of the str functions?

I was looking through the manuals on strcpy() and strcat(). Seems there's no way to evaluate the "success" of the function call. (ie return value will never be NULL), is that correct? It's just ...
0
votes
2answers
84 views

manipulating strings in C

I am trying to write a method that removes the first letter of a string and appends it to the end of the string with "ay" appended afterwards. I am using a linked list structure, and it works, but ...
0
votes
3answers
546 views

C++ char array concatenation

I'm trying to overload the plus sign to concatenate two strings, but I keep getting an error. VS 2010 gives an assertion failed message : "Expression: (L "Buffer is too small" && 0)" ; File: ...
-1
votes
4answers
435 views

C - Make variable INT as Char * for strcat

I'm trying to make a char * with the char representing an integer. So I have this so far int x; for(x=0;x<12;x++){ cp->name=strcat(tp->name, (char *)x); } name is char* The problem is ...
-3
votes
1answer
174 views

Unwanted character being added to string in C [closed]

I have a program that gives you shipping addresses from an input file. However at the beginning of one of the strings, order.add_one, a number is being added to the beginning of the string, that ...
0
votes
4answers
559 views

C “error: function returns address of local variable”

I'm beginner with C and I am learning on my own. I am creating the following function: char *foo(int x){ if(x < 0){ char a[1000]; char b = "blah"; x = x - 1; ...
1
vote
2answers
412 views

my own strcat function using C errors

I'm basically coding my very own string functions in C. I've been trying to do the strcat function using pointers and cannot seem to understand whether I should be allocating memory using malloc or ...
2
votes
2answers
192 views

strcat incompatible types error in C

I have a 2d character array of the form arr[][]. I need to add a single character to the end and sometimes to the beginning of the ith or jth row in this array. Here is the code snippet: arr[j] = ...
0
votes
5answers
204 views

C: creating new file extensions based on a filename

I would like to name output files based on a base filename with a different extension. In C psuedo-code: a_file = fopen(filename + ".dt1","wt"); b_file = fopen(filename + ".dt2","wt"); c_file = ...
0
votes
0answers
206 views

How to convert LPCTSTR to char *

No matter what i do i just can't get it to work. ALL i want to do is take a LPCTSTR and a char* and concatenate them into a char* myfunction(LPCTSTR pass, LPCTSTR fail, LPCTSTR done, char* ...
-4
votes
3answers
161 views

explanation of strcat() output

this is one of the question from 295c #include<stdio.h> #include<string.h> main() { char *a="kammo DJ"; const char *b="roomies!!"; ...
0
votes
1answer
130 views

Escape character being included in string

Having a weird problem sprintf(tmp, "\"%s\"", filename); I expect the output to be "filename" but instead I get \"filename\" What is going on here? ============================= extern "C" ...
0
votes
1answer
202 views

Strcat in assembly

I'm trying to concatenate two strings in Assembly but I can't seem to get it working. I have the following piece of code: .data message: .asciz "message" leading: .asciz "leading" .globl main ...
1
vote
2answers
149 views

An assignment requires that I gather a name with 2 scanf's

So here is my first ultra beginner computer programming question in C. I need to set it up so that someone can type in their full name on the input. Here is part of the specs - "You'll have to ...
0
votes
3answers
685 views

How to copy or concatenate two char*

How do you concatenate or copy char* together? char* totalLine; const char* line1 = "hello"; const char* line2 = "world"; strcpy(totalLine,line1); strcat(totalLine,line2); This code produces an ...
0
votes
1answer
178 views

strncat implementation?

I'm sorry if this is too entry-level, but I tried implementing the library function of strcpy as follows: #include <stdio.h> void strncat (char *s, char *t, int n) { // malloc to extend size ...
2
votes
3answers
250 views

strcat overwrites my string

I can't figure this out. When I compile this code on my Windows machine with Code::Blocks it works just fine but when I try to compile it with Make under Cygwin or an actual Unix machine at school I ...

1 2 3