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 above gives redefinition error for QUERY. I don't want to use macro as backspace '\' will be required after every line. I could define these in separate c file and extern the variables in h file but I feel lazy to do that.

Is there any other way to achieve this in C?

link|improve this question

77% accept rate
Header files as Armen says - check his answer. – Acme Mar 31 '11 at 12:05
Kindly let me know the reason for negative vote. – Manish Mar 31 '11 at 12:21
feedback

3 Answers

up vote 5 down vote accepted

In some .c file, write what you've written. In the appropriate .h file, write

extern const char* QUERY; //just declaration

Include the .h file wherever you need the constant

No other good way :) HTH

link|improve this answer
:( I thought so. Guess I need to stop being so lazy! – Manish Mar 31 '11 at 12:08
@Manish: Exactly :) – Armen Tsirunyan Mar 31 '11 at 12:10
@Manish:: Its better than writing the declaration in every .c files. And you know Ctrl+C -- Ctrl+V also works. – Acme Mar 31 '11 at 12:14
+1 you can have any colour you want as long as it's black LOL – pmg Mar 31 '11 at 12:16
@Acme: Ctrl+C -- Ctrl+V is exactly the thing I want to avoid. I know that if I change it in one c file, I'll forget to change it in other which will lead to a debugging nightmare. – Manish Mar 31 '11 at 12:22
feedback

You can simply #define them separate

#define QUERY1 "SELECT a,b,c "
#define QUERY2 "FROM table..."

and then join them in one definition

#define QUERY QUERY1 QUERY2
link|improve this answer
That is quite creative :) but it looks ugly. – Manish Mar 31 '11 at 12:07
Ugly and "backspace '\'" go hand-in-hand :) – pmg Mar 31 '11 at 12:11
feedback

There are several ways

  • place your variables in one file, declare them extern in the header and include that header where needed
  • consider using some external tool to append '\' at the end of your macro definition
  • overcome your laziness and declare your variables as extern in all your files
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.