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

I'd like to know, how to calculate integer values of strings in single quotes ' '.

My sample code is:

#include <stdio.h>

int main()
{
    int c = 'aA';
    int d = 'Aa';

    printf( "%d %d" , c, d);

    return 0;
}

And the output is:

24897 16737

What are those numbers? Is there any formula to calculate them ?

share|improve this question
That is wrong, you have to use double quotes on strings. – Nick Nov 14 '12 at 18:15
@Nick Oh really? No, not at all. – H2CO3 Nov 14 '12 at 18:16
@H2CO3 are multibyte integers considered strings? – Nick Nov 14 '12 at 18:21
@Nick No, they aren't. But: what OP has is valid, it just means something different. – H2CO3 Nov 14 '12 at 18:22

marked as duplicate by Kiril Kirov, H2CO3, KingsIndian, codaddict, Brian Mains Nov 14 '12 at 18:29

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 5 down vote accepted

These are:

  1. not strings!

  2. multibyte integers, of which the value is implementation-defined, but it is usually calculated using this formula:

    integer value of 1st character multiplied by (2 << CHAR_BITS) + integer value of 2nd character

So, assuming your C locale uses ASCII and you have 8-bit bytes, 'aA' becomes

97 * 256 + 65

which is 24897.

Multicharacter literals are of type int.

share|improve this answer

It is the value of multi-character character stored in your variables

share|improve this answer

The value of a multi-character constant is implementation-defined.

ยง 6.4.4.4 Character constants
The value of an integer character constant containing more than one character (e.g., 'ab'), or containing a character or escape sequence that does not map to a single-byte execution character, is implementation-defined.

share|improve this answer
+1 for citing the Standard. – H2CO3 Nov 14 '12 at 18:27

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