Tagged Questions

9
votes
5answers
2k views

C/C++, can you #include a file into a string literal?

I have a C++ source file and a Python source file. I'd like the C++ source file to be able to use the contents of the Python source file as a big string literal. I could do something like this: char* ...
8
votes
5answers
2k views

C String literals: Where do they go?

I have read a lot of posts about "string literals" on SO, most of which have been about best-practices, or where the literal is NOT located in memory. I am interested in where the string DOES get ...
7
votes
4answers
310 views

char four[4] = “four”; What are the correct semantics for this statement?

int main(void) { char four[4] = "four"; return 0; } When compiled as a C++ program, G++ reports xxx.cpp: In function int main(): xxx.cpp:3: error: initializer-string for array of chars is ...
5
votes
6answers
3k views

Why is passing a string literal into a char* argument only sometimes a compiler error?

I'm working in a C, and C++ program. We used to be compiling without the make-strings-writable option. But that was getting a bunch of warnings, so I turned it off. Then I got a whole bunch of errors ...
5
votes
4answers
5k views

Regular expression for a string literal in flex/lex

I'm experimenting to learn flex and would like to match string literals. My code currently looks like: "\""([^\n\"\\]*(\\[.\n])*)*"\"" {/*matches string-literal*/;} I've been struggling with ...
4
votes
5answers
590 views

Implementation of string literal concatenation in C and C++

AFAIK, this question applies equally to C and C++ Step 6 of the "translation phases" specified in the C standard (5.1.1.2 in the draft C99 standard) states that adjacent string literals have to be ...
2
votes
2answers
136 views

ANSI C: Pointers to strings literals [closed]

Possible Duplicate: Are string literals const? Is the following valid in ANSI C? #include <stdio.h> /* This returns "Hans" if arg != 0, "Gretel" if arg == 0 */ char* foo(int arg) { ...
2
votes
4answers
175 views

what is the technical difference between these declarations?

char amessage[] = "now is the time"; /* an array */ char *pmessage = "now is the time"; /* a pointer */
1
vote
5answers
169 views

Bus error troubleshooting

I am trying reverse a string. This is the code I tried: #include<stdio.h> #include<string.h> int main(){ char *c="I am a good boy"; printf("\n The input string is : %s\n",c); ...
1
vote
3answers
94 views

Compile time variable sized string literal in C

What should be done for DD ? if #define HEADING_TITLE_PROJECT_NAME "<= Version Maintenance Based On Compiled DateTime =>" #define SIZE_OF_HEADER_FOR_DECORATION_PURPOSE ...
1
vote
4answers
248 views

C -> sizeof string is always 8

#include "usefunc.h" //don't worry about this -> lib i wrote int main() { int i; string given[4000], longest = "a"; //declared new typdef. equivalent to 2D char array given[0] = "a"; ...
1
vote
6answers
141 views

c++ How could I properly predefinied array of char*?

I am doing it that way: int argc = 9; char* argv[argc]; argv[0] = "c:/prog.exe"; but I get notice, that it is deprecated. What is better way?
1
vote
5answers
442 views

What is the difference between a String Constant and String Literal in C?

What's the difference between a String Constant and String Literal in plain C? This question is similar to another: ...
1
vote
6answers
364 views

(c/c++) do copies of string literals share memory in TEXT section?

If I call a function like myObj.setType("fluid"); many times in a program, how many copies of the literal "fluid" are saved in memory? Can the compiler recognize that this literal is already defined ...
1
vote
4answers
918 views

Is this really a buffer overflow?

The static analysis tool we use is flagging C code similar to the following as a critical buffer overflow. #define size 64 char buf [size + 1] = ""; memset (buf, 0, size + 1); The tool's error ...
0
votes
4answers
170 views

How to embed strings inside code of executable?

I have a string literal that's used in a number of different places around my executable. Let's say something like: const char *formatString = "Something I don't want to make obvious: %d"; int ...
0
votes
3answers
133 views

shared c constants in a header

I want to share certain C string constants across multiple c files. The constants span multiple lines for readability: const char *QUERY = "SELECT a,b,c " "FROM table..."; Doing ...
0
votes
7answers
202 views

C: string-literal - question

Is only in char *ptr = "Hello World" a string literal or are both "Hello World" string literals? #include <stdio.h> #include <stdlib.h> int main(void) { char array[] = { "Hello ...
0
votes
2answers
1k views

Weird gcc error stray/missing terminating " character in C

I get the following errors: error: missing terminating " character and error: stray `\' in program In this line of C code: system("sqlite3 -html /home/user/.rtcom-eventlogger/el.db \"SELECT ...