A string in the programming language C is represented as a sequence of characters followed by a null terminator (represented as \0).

learn more… | top users | synonyms

-4
votes
1answer
30 views

C Check duplicate string entries

I need to check if in my file there are duplicates entries, in C. Sample file: /proc/proc1 1000 /proc/proc2 2000 /proc/proc1 3000 I need to solve like this: /proc/proc1 1000 3000 /proc/proc2 2000 ...
0
votes
1answer
86 views

C reversing a String [duplicate]

help me.. why this C program doesnt reverse the string ? it crashes... but when i use a character array the code seems to work fine..but the moment i use a pointer to a string..its giving ...
5
votes
3answers
92 views

How to initialize an unsigned char array from a string literal?

I have a struct with an unsigned char[16] field that I'd like to initialize to zeros. The following (strongly simplified) code compiles fine with clang (OS X): struct GUID { unsigned char ...
1
vote
1answer
70 views

Alternative to heap allocated strings in C (with long lifetimes)

Is it possible to use "temporary string objects" in a C program? For example, I have a reasonably large array of char * objects (part of a struct), which are currently using heap allocated memory. I ...
1
vote
2answers
55 views

Define where placed the c-string

How can I define do I need call "delete [ ]" for pointer or not in destructor of my class? Pointer (member-variable) can point out to buffer allocated in heap or not in different time (it can be a ...
1
vote
1answer
43 views

why does Linux kernel using kobj->name[0] to determine a NULL c string?

There is a question about checking c string null in Linux kernel code, could you help me, thank you! In kobject.c, kobject_add_internal to check the name whether is NULL: if (!kobj->name || ...
-1
votes
1answer
64 views

Pointer / function argument issue? [closed]

I'm making a little program that will use a stack implemented with a dynamic array to check if a phrase has balanced parenthesis and brackets. So far, I've just tried passing a phrase to the ...
0
votes
2answers
34 views

Mental block on fprintf string termination

I am at a total loss with this one. I can't figure out why this isn't working. Simple character array with a NULL terminator - except that when I output it, it doesn't terminate! int ...
0
votes
0answers
47 views

How to read from a .csv file (how to send the file to the uC)

I am using a 32 bit micro-controller (uC) from Renesas for my project. I have implemented serial communication; so I can communicate with the uC via hyper terminal. I have to read values from a .csv ...
0
votes
0answers
50 views

C Adding a single quoted character to a character array?

So I found myself doing something that I thought was 100% straightforward...but it has stumped me. I have part of the following class function: std::string BigNumber::print() { bool zerosBroken = ...
2
votes
5answers
63 views

Modifying a string array inside of a function

The following code example, doesn't print the strings test1 - test5 contained in array in the main() function however it works inside the make() function I am certain the answer is simple, how would ...
0
votes
4answers
52 views

Add a pointer to a beginning of array (of pointers) in C

I have an array of char pointers char ** strings with the length of limit I'm trying to add a char pointer to the beginning of the array, while maintaining all the arrays objects except the last ...
-2
votes
1answer
49 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 ...
2
votes
3answers
187 views

printing ASCII codes of characters stored in C-string - explanation needed

This program converts the char to their ASCII code Program works perfectly, but i don't understand how the line cout << (int) *p1++ << ' '; works. Еspecially *p1++ in this inner while ...
0
votes
2answers
143 views

Correctly pass a char array and char pointer to function by reference in C

Is there a right way to call a char array and a char pointer to go to a function but it's pass by reference where it will also be manipulated? Something like this: #include <stdio.h> #include ...
2
votes
7answers
115 views

Combining two strings in C

I've just started learning about arrays and strings and I wanted to join the inputs of two strings, stringA and stringB and put their values in another string, stringC, after finding their lengths. I ...
2
votes
3answers
84 views

Is it ALWAYS safe to assume that an HTTP packet with 'text/*' will NEVER have a '\0'?

I'm writing an embedded C program that communicates using HTTP. I've got it working, but I've not done much with networking before and just wanted to make sure that I'm not making any really bad ...
2
votes
3answers
105 views

Cast char* to double - as bytes

I have a byte array that represents double: char number[8]; I need to cast this to actual double (which has 8 bytes as well). Based on advice I tried this, but it failed: ...
2
votes
2answers
54 views

I have two questions about the code below

Running this code in VS2010, I get the warnings shown below, but the C-strings "f()" and "g()" are output on the console. Question 1: Why does f() generates the warning and g() doesn't? Aren't ...
0
votes
2answers
52 views

Input validation for a c-string that is passed by reference [closed]

#include "cstack.h" #include <iostream> #include <cstring> using namespace std; bool isValidExpression (CStack&, char*); int main (void) { char expression[21]; ...
-1
votes
1answer
67 views

Return Statement Returning a Null Pointer Value and Not the Desired Value

I ran this through debug, and in the String Substring function, everything works up until the return statement. 'returnString', in the code below, has the correct value when at the return line. ...
0
votes
3answers
103 views

Why is this constructor written as it is?

Our professor posted a custom 'String' template file online, and asked us a while ago to fill out the functions below. My question, in order to try and understand this, is why the top three ...
0
votes
5answers
57 views

Error working with C-Strings

I have a simple example from a C++ textbook that defines a C-String and then loops to replace all the elements that are not the \0 character with X. char ourString[5] = "Hi"; int index = 0; ...
-1
votes
1answer
50 views

Use strings from a function to main function

One of my functions reads lines from a text file and stores into a variable. I need a way to use that variable in my main function. I've tried several methods and nothing has worked. Can anyone help ...
0
votes
2answers
77 views

C-style string returning by reference

Can anyone enlighten me as to why this code isn't working? I pass in char * pointers to my split function and split my buffer up. Allocate memory on the heap for each arg (char *) that was passed ...
1
vote
2answers
128 views

get first char from *char[] variable in C

i want to get the first character of a string (char[]) in C. unsigned int N; unsigned int F; unsigned int M; char C; int main (int argc, char *argv[]){ if (argc!=5){ printf("Invalid ...
0
votes
3answers
130 views

Debug Assertion Failed! String manipulation using pointer arithmetic

EDIT: Pastebin links to the entirety of the code at the bottom for my CS215 course, I was given a class called String215 which is a basic string class to help in the understanding of dynamic memory ...
0
votes
2answers
76 views

Result from my curl not read as string

I am writing this code for POS machine i set the return data from the web link to "bad" so that i can test if it is really working. but when i compare the result with a String "bad" it always say ...
3
votes
4answers
96 views

Memory address in C

In the last line of the main function, why does &word2 differ from word2? Assume the right headers are in place. Thank you! int main() { char word1[20]; char *word2; word2 = ...
0
votes
3answers
188 views

Using Pointers to pass C-String arguments

I have been stuck on this program all day. I finally feel like I'm getting really close. I have to find the number of vowels and characters in a string. Then output them at the end. However, when I ...
3
votes
3answers
46 views

Determining where string equality comparison fails

Given these strings char * foo = "The Name of the Game"; char * boo = "The Name of the Rose" I want to determine the address of the first mismatched character, in order to extract the common ...
-3
votes
2answers
86 views

Having trouble with memcpy

Code I'm using: char** list char** final; char* target; char* replace; int wCounter, cCounter, i, hashCounter = 0, addLetter = 0; int copyWord, countChars, numOfWords, finalWords = 0, temp; ...
0
votes
2answers
62 views

Having problems using malloc

Ran this program in GDB and after it goes through target/replace malloc statement the [1] element is always given an awkward value. For instance (using GDB): (gdb) p target[0] $1 = -48 '\320' ...
0
votes
2answers
72 views

using strncmp c-style string function

I have a string and I'm trying to find out if it's a substring in another word. For instance(pseudocode) say I have string "pp" and I want to compare it (using strncmp) to happy apples pizza and ...
1
vote
2answers
179 views

How to dynamically allocate memory for char** in C

How would I go about dynamically allocating memory to char** list in this function? Basically the idea of this program is I have to read in a list of words from a file. I cannot assume max strings or ...
0
votes
1answer
93 views

What is wrong with my code C (read in file) -wc Unix command program

Basically I'm supposed to make a program that copies the Unix -wc command. Flags -l, -w, -c, and -L are supposed to display # of lines, # of words, # of characters, and # of characters in line, ...
0
votes
3answers
148 views

(homework) How to put a C-string from one pointer into the memory address of another pointer?

Okay, first off I'm new to C and very new to pointers (Java programmer), so please be gentle. For this class I'm only allowed to use Syscalls, so no stdio. This function is receiving as input a ...
2
votes
4answers
87 views

Why is the number '7' printed after my string in C?

I need to define the characters in an array and print the string...But it always prints as string7 (in this case, test7)...What am I doing wrong here? #include <stdio.h> int main() { char ...
1
vote
1answer
177 views

const char * changing value during loop

I have a function that iterates through a const char * and uses the character to add objects to an instance of std::map if it is one of series of recognized characters. #define CHARSEQ const char* ...
0
votes
2answers
107 views

Swapping 2 continuous strings - time complexity

Goal: Function, that takes a pointer to string and two lengths, and swaps between the inside strings represented by the lengths without using additional memory that depends on the size of the input. ...
1
vote
4answers
138 views

Array of strings in a Macro

I would like to take an array of strings in a macro. Firstly: is that possible? IF yes, can I call them one by one based on the index, when I am using them? Something like this: #define VAR ...
1
vote
2answers
104 views

c program, increment through strings [closed]

I found this program to run through strings and print them. I know there's an error, but I'm not 100% sure what it is. char *stringOptions[] = {"one", "two", "three"}; void incrementString(char ...
2
votes
3answers
527 views

Comparing two char* for equality [duplicate]

Possible Duplicate: What is the proper function for comparing two C-style strings? My match condition doesn't work! Can someone advise how to compare to C-style strings? void ...
1
vote
2answers
169 views

optimized code for reversing a string in c

I have always implemented the c code for reversing a string as: looping I till the length of the string or till the half of its length placing the pointers at the end and beginning of the string ...
-1
votes
1answer
66 views

C standard library string-returning functions [closed]

In some C library functions, for example asctime in time.c, the function returns a string. Considering the function prototype, char *asctime(const struct tm *time), the returned string is either ...
2
votes
2answers
1k views

memcmp,strcmp,strncmp in C

I wrote this small piece of code in C to test memcmp() strncmp() strcmp() functions in C. Here is the code that I wrote: #include <stdio.h> #include <stdlib.h> #include <string.h> ...
-1
votes
2answers
79 views

having problems with authentication if i use if statement

There is an error when i try to compile and im not sure whats wrong with it. This is a program which authencate username and password with textfile, seperated with ";" delimeter in a single textfile. ...
0
votes
2answers
116 views

Bus Error with strncpy in C

I am working on the same project as in this question, however with a slightly different typedef: typedef struct { char* word; int index; } data_t; typedef struct node node_t; typedef node { ...
4
votes
5answers
446 views

Why is strdup considered to be evil

I've seen some posters stating that strdup is evil. Is there a consensus on this? I've used it without any guilty feelings and can see no reason why it is worse than using malloc/memcpy. The only ...
2
votes
2answers
270 views

C string to wide C string

I'm sure this question gets asked a lot but I just want to make sure there's not a better way to do this. Basically, I have a const char* which points to a null-terminated C string. I have another ...

1 2 3