Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I often want to do something like this:

unsigned char urlValid[66] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.~";

...or:

unsigned char listOfChar[4] = "abcd";

...that is, initialize a character array from a string literal and ignoring the null terminator from that literal. It is very convenient, plus I can do things like sizeof urlValid and get the right answer.

But unfortunately it gives the error initializer-string for array of chars is too long.

Is there a way to either:

  • Turn off errors and warnings for this specific occurrence (ie, if there's no room for null terminator when initialising a char array)
  • Do it better, maintaining convenience and readability?
share|improve this question
2  
What about std::string instead? – 0x499602D2 Jan 17 at 20:04
@David I code primarily in C, any alternatives for that? – Alec Jan 17 at 20:05
7  
If this is C, then remove the C++ tag. – Rapptz Jan 17 at 20:05
2  
Wait, you want to use C in a C++ project? Your teammates will hate you... – Etienne de Martel Jan 17 at 20:12
1  
@Alec you are aware that C and C++ are different languages which “by accident” share some of the syntax and one character in the name? – Jonas Wielicki Jan 17 at 20:19
show 1 more comment

4 Answers

up vote 6 down vote accepted

You tagged your question as both C and C++. In reality in C language you would not receive this error. Instead, the terminating zero simply would not be included into the array. I.e. in C it works exactly as you want it to work.

In C++ you will indeed get the error. In C++ you'd probably have to accommodate the terminating zero and remember to subtract 1 from the result of sizeof.

Note also, that as @Daniel Fischer suggested in the comments, you can "decouple" definition from initialization

char urlValid[66]; 
memcpy(urlValid, "ab...", sizeof urlValid);

thus effectively simulating the behavior of C language in C++.

share|improve this answer
"terminating zero simply would not be included". That is interesting. Could you give me the reference? – Nawaz Jan 17 at 20:09
2  
@Nawaz 6.7.9 (14) "An array of character type may be initialized by a character string literal or UTF−8 string literal, optionally enclosed in braces. Successive bytes of the string literal (including the terminating null character if there is room or if the array is of unknown size) initialize the elements of the array." – Daniel Fischer Jan 17 at 20:11
2  
@Nawaz: It is in 6.7.8/14 in C99. "An array of character type may be initialized by a character string literal, optionally enclosed in braces. Successive characters of the character string literal (including the terminating null character if there is room or if the array is of unknown size) initialize the elements of the array." Note the "if there is room" part. This has always been one of the differences between C and C++. – AndreyT Jan 17 at 20:12
thanks both of you. :-) Very subtle difference by the way! – Nawaz Jan 17 at 20:12
Good to know indeed. – lethal-guitar Jan 17 at 20:15
show 1 more comment

Well, in C++ you should always use std::string. It's convenient and not prone to memory leaks etc.

You can, however, initialize an array without specifying the size:

char urlValid[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.~";

This works since the compiler can deduce the correct size from the string literal. Another advantage is that you don't have to change the size if the literal changes.

Edit:You should not use unsigned char for strings.

share|improve this answer
1  
That adds a null terminator, which makes sizeof urlValid return 67 – Alec Jan 17 at 20:07
1  
@Alec See, why are you so worried about that terminating NUL? That's how strings work in C. You should get used to it. – H2CO3 Jan 17 at 20:08
1  
Maybe because he wants a char array and not a string, @H2CO3. – Jonas Wielicki Jan 17 at 20:08
1  
Why downvote? The string will be hard to work with using standard functions like strcpy if it doesn't have a terminating zero. – lethal-guitar Jan 17 at 20:08
I suppose that this is not supposed to be worked with as a string. It looks more like a lookup array or something, although I'd implement such a lookup differently – Jonas Wielicki Jan 17 at 20:09
show 3 more comments

Initialise with an actual array of chars?

char urlValid[] = {'a','b','c','d','e','f',...};
share|improve this answer

there are two simple solutions.

  1. You can either add an extra element into the array like this:

    unsigned char urlValid[67] = 
        "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.~";
    
  2. or leave out the size of the array all together:

    unsigned char urlValid[] =
        "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.~";
    
share|improve this answer
The OP wants the exact opposite. He wants to ignore the trailing \0. – FUZxxl Jan 17 at 22:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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