Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

274
votes
7answers
19k views

Why is char[] preferred over string for passwords?

In Swing, the password field has a getPassword() (returns char[]) method instead of usual getText() (returns String) method. Similarly, I have come across a suggestion not to use Strings to handle ...
66
votes
5answers
58k views

Convert std::string to const char* or char*

How can I convert an std::string to a char* or a const char*?
47
votes
3answers
2k views

Difference between char and char[1]

In C++ what is the difference (if any) between using char and char[1]. examples: struct SomeStruct { char x; char y[1]; }; Do the same reasons follow for unsigned char?
43
votes
13answers
42k views

What is an unsigned char?

In C/C++, what is an unsigned char used for? How is this different from a regular char?
34
votes
6answers
1k views

In Java, is the result of the addition of two chars an int or a char?

When adding 'a' + 'b' it produces 195. I asked on StackOverflow IRC channel they say the output datatype is char. I think it is int and some others do as well. What is the correct answer?
24
votes
4answers
776 views

In C, why is sizeof(char) 1, when 'a' is an int?

I tried printf("%d, %d\n", sizeof(char), sizeof('a')); and got 1, 4 as output. If size of a character is one, why does 'c' give me 4? I guess it's because it's an integer. So when I do char ch = ...
24
votes
4answers
1k views

Are there machines, where sizeof(char) != 1?

Are there machines (or compilers), where sizeof(char) != 1 ? Does C99 standard says that sizeof(char) on standard compliance implementation MUST be exactly 1? If it does, please, give me section ...
22
votes
8answers
8k views

What is the difference between char s[] and char *s in C?

In C, I can do like this: char s[]="hello"; or char *s ="hello"; so i wonder what is the difference? I want to know what actually happen in memory allocation during compile time and run time.
18
votes
2answers
570 views

What is a “byte” in C / C++

For example, here's a reference for fread: size_t fread ( void * ptr, size_t size, size_t count, FILE * stream ); Reads an array of count elements, each one with a size of "size bytes"... So how ...
18
votes
9answers
2k views

Why does boolean consume more memory than char?

Why does a Boolean consume 4 bytes and a char 2 bytes in the .NET framework? A Boolean should take up 1bit or at least be smaller than a char.
17
votes
10answers
2k views

Why are C character literals ints instead of chars?

In C++, sizeof('a') == sizeof(char) == 1. This makes intuitive sense, since 'a' is a character literal, and sizeof(char) is defined to be 1 by the standard. But in C, sizeof('a') == sizeof(int). That ...
15
votes
8answers
1k views

Is there any logic behind ASCII codes' ordering?

I was teaching C to my younger brother studying engineering. I was explaining him how different data-types are actually stored in the memory. I explained him the logistics behind having ...
13
votes
4answers
16k views

How can I convert a character to a integer in Python, and viceversa?

I want to get, given a character, its ascii value. For example, for the character 'a', I want to get 97, and viceversa. Thanks, Manuel
12
votes
4answers
23k views

Representing char as a byte in Java

I must convert a char into a byte or a byte array. In other languages I know that a char is just a single byte. However, looking at the Java Character class, its min value is \u0000 and its max ...
12
votes
5answers
46k views

C# char to int

So I have a char in c#: char foo = '2'; Now I want to get the 2 into an int. I find that Convert.ToInt32 returns the actual decimal value of the char and not the number 2. The following will ...
11
votes
4answers
162 views

char_x < (char_y + 1) == char_x <= char_y?

Hi all I was browsing through some of the Java source code when I came across this (java.lang.Character): public static boolean isHighSurrogate(char ch) { return ch >= MIN_HIGH_SURROGATE ...
11
votes
11answers
4k views

Why is there no Char.Empty like String.Empty?

Is there a reason for this? I am asking this because if you needed to use lots of empty char, then you get into the same situation as you would when you use lots of empty strings. Edit: The reason ...
11
votes
2answers
1k views

C++ Confusion. Reading Integer From Text File. Convert to ASCII

I am learning C++ for the first time. I have no previous programming background. In the book I have I saw this example. #include <iostream> using::cout; using::endl; int main() { int x ...
11
votes
2answers
5k views

Python: How can I increment a char?

I'm new to Python, coming from Java and C. How can I increment a char? In Java or C, chars and ints are practically interchangeable, and in certain loops, it's very useful to me to be able to do ...
11
votes
3answers
4k views

char is signed or unsigned by default

In the book "Complete Reference of C" it is mentioned that char is by default unsigned. But i am trying to verify this with GCC as well as visual studio. It is taking it as signed by default. which ...
11
votes
4answers
10k views

.NET / C# - Convert char[] to string

Guess I have just never run across it before. What is the proper way to turn a char[] into a string? The ToString() method from an array of chars doesn't do the trick. Guess I had always imagined ...
11
votes
7answers
3k views

Is char guaranteed to be exactly 8-bit long in C?

That's all. Didn't find any similar topic so bear with me it there is.
11
votes
14answers
3k views

Should a buffer of bytes be signed or unsigned char buffer?

Should a buffer of bytes be signed char or unsigned char or simply a char buffer? Any differences between C and C++? Thanks.
10
votes
4answers
198 views

Why aren't Array methods built into an Array instance?

Sorry for what is probably a silly question but it's bugging me... int[] i = {3, 2, 1}; //why Array.Sort(i); //instead of i.Sort(); char c = 'c'; //why char.IsLetter(c); //instead of c.Isletter();
10
votes
12answers
33k views

clearing a char array c

I thought by setting the first element to a null would clear the entire contents of a char array. char my_custom_data[40] = "Hello!"; my_custom_data[0] = '\0'; However, this only sets the first ...
9
votes
9answers
570 views

'a' == 'b'. It's a good way to do?

What happens if I compare two characters in this way: if ('a' == 'b') doSomething(); I'm really curious to know what the language (and the compiler) does when it finds a comparison like this. ...
9
votes
5answers
331 views

What to watch out for when converting a std::string to a char* for C function?

I have read many posts asking the question on how to convert a C++ std::string or const std::string& to a char* to pass it to a C function and it seems there is quite a few caveat's in regards to ...
9
votes
4answers
2k views

Difference between static const char* and const char*

Could someone please explain the difference in how the 2 snippets of code are handled below? They definitely compile to different assembly code, but I'm trying to understand how the code might act ...
9
votes
4answers
7k views

How do I apply the for-each loop to every character in a String in Java?

So I want to iterate for each character in a string. So I thought: for (char c : "xyz") but I get a compiler error: StackCharTester.java:20: foreach not applicable to expression type How can I ...
9
votes
4answers
8k views

Getting an ascii character code in ruby - ? fails

I'm in a situation where I need the ASCII value of a character (for Project Euler question #22, if you want to get specific) and I'm running into an issue. Being new to ruby, I googled it, and found ...
8
votes
7answers
327 views

What makes a char * an array of chars?

Normally, if you do the following: int * i = &someint; It's just a pointer to a variable. But, when you do char * str = "somestring"; it automatically turns it into an array. Is it the ...
8
votes
5answers
238 views

C allocated pointers? What's this?

I have the below code. char a[] = "abcde"; char *b = "fghij"; char *c = malloc(6); char *d = c; c = "klmno"; And the exercise states: Draw a picture of the data structures a, b, c and d(with ...
8
votes
4answers
109 views

.NET Enum base type of Char

According to msdn Enums cannot have a base type of char. Why can enums not have a base type of char? Also why does microsoft strongly recommend that an enum contain a constant with a value of 0? Thank ...
8
votes
5answers
568 views

Char array declaration and initialization in C

I was curious about why this is not allowed in C: char myarray[4]; myarray = "abc"; And this is allowed: char myarray[4] = "abc"; I know that in the first case I should use strcpy: char ...
8
votes
3answers
174 views

Semantics of comparison of char objects

While I was reading through some old code today, I noticed the following assert line: assert(('0' <= hexChar && hexChar <= '9') || ('A' <= hexChar && hexChar <= 'F') ...
8
votes
8answers
489 views

How to remove characters from a string using LINQ

I'm having a String like XQ74MNT8244A i nee to remove all the char from the string. so the output will be like 748244 How to do this? Please help me to do this
8
votes
5answers
216 views

Who determines the ordering of characters

I have a query based on the below program - char ch; ch = 'z'; while(ch >= 'a') { printf("char is %c and the value is %d\n", ch, ch); ch = ch-1; } Why is the printing of whole set of ...
8
votes
3answers
328 views

how to pass vector of string to foo(char const *const *const)?

Edit: Thank you all very much for your help. Now I feel that I'm really stupid and I am so sorry to waste your time. After implementing James Hopkin' suggestion, I still get the warnings of "invalid ...
8
votes
3answers
426 views

Signedness of char and Unicode in C++0x

From the C++0x working draft, the new char types (char16_t and char32_t) for handling Unicode will be unsigned (uint_least16_t and uint_least32_t will be the underlying types). But as far as I can ...
8
votes
7answers
2k views

C / C++ How to copy a multidimensional char array without nested loops?

I'm looking for a smart way to copy a multidimensional char array to a new destination. I want to duplicate the char array because I want to edit the content without changing the source array. I ...
8
votes
7answers
3k views

What is the correct way to compare char ignoring case?

I'm wondering what the correct way to compare two characters ignoring case that will work for all cultures. Also, is Comparer<char>.Default the best way to test two characters without ignoring ...
8
votes
5answers
545 views

why is char's sign-ness not defined in C?

The C standard states: ISO/IEC 9899:1999, 6.2.5.15 (p. 49) The three types char, signed char, and unsigned char are collectively called the character types. The implementation shall define ...
8
votes
7answers
20k views

What is the simplest way to convert char[] to/from tchar[] in C/C++(ms)?

This seems like a pretty softball question, but I always have a hard time looking up this function because there seem there are so many variations regarding the referencing of char and tchar.
7
votes
3answers
160 views

C# - Can I get an “english name” for a character?

I was just using this most helpful link: How check if given string is legal (allowed) file name under Windows? And inside some validate code I have something that looks like (ignore the fact that I'm ...
7
votes
2answers
121 views

Char.Equals vs Object.Equals — ReSharper suggests that I should use Object.Equals. Should I?

Basically, I'm wondering if I should listen to ReSharper in this instance... You'd figure that comparing to characters one should use Char.Equals(char) since it avoids unboxing, but Resharper ...
7
votes
5answers
208 views

Bytewise reading of memory: “signed char *” vs “unsigned char *”

One often needs to read from memory one byte at a time, like in this naive memcpy() implementation: void *memcpy(void *dest, const void *src, size_t n) { char *from = (char *)src; char *to ...
7
votes
1answer
187 views

why a “char*” can point to a “const char*”?

the following code can be compiled correctly on both VC or gcc: char *str = "I am a const!"; str[2] = 'n'; however, obviously there is a run-time-error. Since "I am a const!" is a const char*, why ...
7
votes
3answers
273 views

Does anyone have considerable proof that CHAR is faster than VARCHAR?

Any benchmark, graph anything at all ? Its all academic and theoretical across the web. Ok its not the first time that this question has been asked, they all say that using CHAR results in faster ...
7
votes
7answers
539 views

Char C question about encoding signed/unsigned

I read that C not define if a char is signed or unsigned, and in GCC page this says that it can be signed on x86 and unsigned in PowerPPC and ARM. Okey, I'm writing a program with GLIB that define ...
7
votes
3answers
598 views

Why does strchr take an int for the char to be found?

The strchr function in the C standard library looks for a char in a string, but its signature takes an int for the search character. In these two implementations I found, the implementation casts ...

1 2 3 4 5 26