Tagged Questions
The strcat tag has no wiki summary.
4
votes
5answers
81 views
Matlab character to string convertion problem. What function to use?
x = 1234 56789 7654
x(1) is 1, x(2) is 2 and so on... there are 5 spaces in between..
size(x) = 1 23
One row with 23 columns
I've tried using num2str, strcat but I cannot club the numbers.
...
3
votes
2answers
72 views
strcat eccentric behavior
I wrote this simple C program and couldn't quite figure out this bizarre behavior of strcat
long sum(long col, char* path, char* path2){
printf("%s\n",path2);
strcat(path,".endlines");
...
3
votes
2answers
92 views
Scanf erases a char array unwillingly
See the following program:
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
main(void){
printf("Array ...
2
votes
9answers
100 views
Writing more characters than malloced. Why does it not fail?
Why does the following work and not throw some kind of segmentation fault?
char *path = "/usr/bin/";
char *random = "012";
// path + random + \0
// so its malloc(13), but I get 16 bytes due to ...
2
votes
2answers
83 views
String concats onto another without an assignment, why is this?
Below is a function from a program:
//read the specified file and check for the input ssn
int readfile(FILE *fptr, PERSON **rptr){
int v=0, i, j;
char n2[MAXS+1], b[1]=" ";
for(i=0; ...
2
votes
3answers
358 views
Why is “strcat” considered as “unsafe”? [closed]
Possible Duplicate:
Why does MSVC++ consider “std::strcat” to be “unsafe”? (C++)
Here is my code:
char sentence[ 100 ] = "";
char *article[ 5 ] = { "the", "a", ...
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
3answers
139 views
What is the scope of a char*[] in C?
I have some code that does the following:
while(some condition)
{
char *line[WORDLEN];
//do stuff to line, including strcat(line, "words")
printf("%s", line);
line[0] = '\0';
}
...
2
votes
5answers
364 views
Segmentation Fault with strcat
I'm having a bit of a problem with strcat and segmentation faults. The error is as follows:
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: ...
2
votes
3answers
3k views
C char to string (passing char to strcat())
my problem is in convert a char to string
i have to pass to strcat() a char to append to a string, how can i do?
thanks!
#include <stdio.h>
#include <string.h>
char *asd(char* in, char ...
2
votes
5answers
5k views
Matlab strcat function troubles with spaces
I'm trying to accomplish this:
strcat('red ', 'yellow ', 'white ')
I expected to see "red yellow white", however, I see "redyellowwhite" on the command output. What needs to be done to ensure the ...
2
votes
7answers
1k views
Why does MSVC++ consider “std::strcat” to be “unsafe”? (C++)
When I try to do things like this:
char* prefix = "Sector_Data\\sector";
char* s_num = "0";
std::strcat(prefix, s_num);
std::strcat(prefix, "\\");
and so on and so forth, I get a warning
warning ...
1
vote
5answers
67 views
Char x[50] and Char x[100] Output
I'm not used to C as I'm primarily a Java guy, with some knowledge of C++, so forgive me if this is a trivial question. I could not seem to find an answer while searching online.
I'm initializing a ...
1
vote
1answer
43 views
My loop is not performing as I expect it to
I am running a C program that calls an external assembly function. For academic purposes, I am trying to perform strcat. I pass the two strings to my assembly program as char * parameters. I push ebp ...
1
vote
5answers
104 views
C using strcat getting segmentation fault
Here is my code :
char *name, name_log="log-";
------getting 'name' from user-----
strcat(name_log, name);
char ext[] = ".log";
strcat(name_log, ext);
What i need to end up with is name_log = ...
1
vote
1answer
72 views
strcat() deleting strings when trying to create a space-separated string. (C programming)
I have been struggling with this problem for the last few hours, and it is one of the stranger problems I have encountered in my 3 years learning programming.
I am trying to create a longer, ...
1
vote
3answers
94 views
Concatenating C strings in linear time with crt
Say we want to concatenate const char *s[0], s[1], ... s[n-1] into one long char out[] in C.
Formally (ignoring buffer overruns, for simplicity):
void concatManyStrings(char out[], const char ...
1
vote
3answers
159 views
How can I join a char to a constant char*?
I have a function that joins two constant char* and returns the result. What I want to do though is join a char to a constant char* eg
char *command = "nest";
char *halloween = join("hallowee", ...
1
vote
5answers
115 views
C memory question
char buffer[10];
strcat(buffer, "hi");
printf("%s", buffer);
In the above code, it prints some weird symbol or number followed by the "hi", I know strcat is appending to buffer. And I normally zero ...
1
vote
4answers
167 views
How do I properly work with Strings in C?
The likes of java, python, and others have ruined me.
I'm trying to automate an FTP client by responding to server codes:
For example:
// i know this is ugly, please bare with me
char ...
1
vote
8answers
452 views
strcat segmentation fault
The second call to strcat here is generating a segmentation fault, why?
#include <unistd.h>
#include<stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include ...
1
vote
3answers
1k views
string concatenate char* with LPCTSTR
LPCTSTR Machine=L"Network\\Value";
char s[100]="Computer\\";
strcat(s,(const char*)Machine);
printf("%s",s);
Here i received output Computer\N only i expect output like Computer\Network\Value .
...
0
votes
5answers
56 views
how many null bytes, concatenating strings in C
If i want to concatenate 2 strings in C, do i have to allocate an extra null char for every string or one is enough?
int main(){
char *s1 = NULL;
char *s2 = NULL;
char *s1_s2 = NULL;
...
0
votes
4answers
91 views
Function to concat two char* in C++
First off, I'm a C# programmer, so my working knowledge of C++ is fairly limited. I took it back in college, but haven't touched it in 10 years, so please forgive me if this is relatively simple ...
0
votes
3answers
76 views
realloc(): invalid next size when reallocating to make space for strcat on char *
I am getting invalid memory error on following code:
printf(" %s\n","FINE 5");
printf("%s LENGTH IS: %d\n","FINE 6",strlen(": "));
buffer = (char *)realloc(buffer, strlen(buffer)* sizeof(char) + ...
0
votes
3answers
58 views
Will the following use of strdup() cause a memory leak in C ?
char* XX (char* str)
{
// CONCAT an existing string with str , and return to user
}
And i call this program by:
XX ( strdup("CHCHCH") );
Will this cause a leak while not ...
0
votes
1answer
84 views
How to connect strings in MATLAB
I try to do the following:
fname = strcat('C:\Users\user_name\work\video\',avi_name);
videoObject = VideoReader(fname);
I get an error message:
Argument must contain a string.
I try to check ...
0
votes
2answers
86 views
Strtok and Strcat conflict
I am trying to work with strtok and strcat but the second printf never shows up. Here is the code:
int i = 0;
char *token[128];
token[i] = strtok(tmp, "/");
printf("%s\n", token[i]);
i++;
while ...
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
58 views
Getting unnecessary value while concatenating strings
I am getting problem while concatenating strings.I think this is the stupid question,but i didn't get answer.Thats why i am posting here.Please Help me.
The source code is
unsigned char arr_25[] = ...
0
votes
1answer
55 views
how to strcat in OPENFILENAME paramaeters in C programming
I have a working code using OPENFILENAME. May i know how to use strcat to dynamically control the its parameters
this one is working
//ofn.lpstrFilter = "Rule Files (*.net and ...
0
votes
8answers
270 views
Malloc() memory corruption error after concatenating a string
Guys I'm generating a string which rappresent a path to a file, concatenating a macro and a string. The function is this:
char *userPath(char *username)
{
char *path = (char*)malloc(sizeof(char) * ...
0
votes
3answers
165 views
C strcat garbage characters
I have a function in C where i am trying to get strings from two different locations (unknown size, could be quiet large) and combine them into one string and return them. If i just print the two ...
0
votes
3answers
72 views
how to use strcat with an ENUM?
I have an external tool which is generating an ENUM based on user inputs. Now this ENUM is being used by my C++ code where in i have to select a particular ENUM based on a variable say 'x'. The ENUMS ...
0
votes
2answers
118 views
C: A safer way to check buffer in function and append to it?
I have a function of which I need to return the time for another logging function, and it looks like this:
//put time in to buf, format 00:00:00\0
void gettimestr(char buf[9]) {
if(strlen(buf) != ...
0
votes
2answers
136 views
remove a character from an optional point of string
I want to remove a character from an optional point of string in c lang.. I want to write this program via pointers and strcat() function. Please guid me
Thanks all
0
votes
4answers
405 views
strcat concat a char onto a string?
Using GDB i find I get a segfault when I attempt this operation:
strcat(string,¤tChar);
Given that string is initialized as
char * string = "";
and currentChar is
char currentChar = ...
0
votes
5answers
380 views
I just can't figure out strcat
I know I shouldn't be using that function, and I don't care. Last time I checked the spec for strcat, it said something along the lines of updating the first value as well as returning the same.
Now, ...
0
votes
5answers
215 views
Problem with concatenation + itoa
I have the following code:
char stringHour[50], stringMinute[50], stringSecond[50];
// lots of code...
itoa(hour, stringHour, 10);
itoa(minute, stringMinute, 10);
itoa(second, stringSecond, 10);
...
0
votes
2answers
232 views
g++ + strncat: might overflow destination buffer
I need to include an C function in my C++ program, when compiling the Code with g++ I get the following warning:
In function ‘char* strncat(char*, const char*, size_t)’,
inlined from ‘int ...
0
votes
1answer
108 views
strcat result used as a bash system call does not like ampersand
I am working on an embedded system using ash instead of bash and am trying to call a script from a cross-compiled C program.
It is working, but not in a background process like I am asking it. In ...
0
votes
3answers
503 views
How does return of pointer work in strcat()
Hey guys I'm trying to figure how pointers are returned by strcat(), so I tried implementing my own strcat() to see how it works. The following is my code for mystrcat(), which works like the real ...
0
votes
5answers
259 views
AIX 5.3 vs Solaris 5.10 - C strcat implementation
Does anyone have any idea of why this could happen?
I have a C program in AIX 5.3, I've been asked to run it on a SPARC Solaris 10 machine, but when I did it, I noticed there was a buffer overflow ...
0
votes
7answers
780 views
Strange characters appear when using strcat function in C++
I am a newbie to C++ and learning from the MSDN C++ Beginner's Guide.
While trying the strcat function it works but I get three strange characters at the
beginning.
Here is my code
#include ...
0
votes
5answers
334 views
strcat query (string.h)
First off :
STRCAT :
Cplusplus - strcat
When clearly the definition says :
char * strcat ( char * destination, const char * source );
Why'd they use char str[80] in the example???
Shouldn't they ...
-1
votes
5answers
2k views
strcat implementation
I tried to implement the strcat by myself, and I found the strcat implementation from Wiki like this......but when I use it, there is segmentation fault.
What's wrong with the code below?
char *
...
-2
votes
1answer
27 views
Strcat function always results in error [closed]
I somehow seemed to have broken the strcat function
Even when running a simple concatenation such as
>> b = {'jkl', 'mn'};
>> a = {'abcde', 'fghi'};
>> ab = strcat(a, b)
I ...