英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

char    音标拼音: [tʃ'ɑr]
n. 字符型[C 语言中,数据类型的一种];
n. 家庭杂务,炭
vi. 打杂,烧焦

字元型[C 语言中,数据类型的一种];家庭杂务,炭打杂,烧焦

char
n 1: a charred substance
2: a human female employed to do housework; "the char will clean
the carpet"; "I have a woman who comes in four hours a day
while I write" [synonym: {charwoman}, {char}, {cleaning woman},
{cleaning lady}, {woman}]
3: any of several small trout-like fish of the genus Salvelinus
[synonym: {char}, {charr}]
v 1: burn to charcoal; "Without a drenching rain, the forest
fire will char everything" [synonym: {char}, {coal}]
2: burn slightly and superficially so as to affect color; "The
cook blackened the chicken breast"; "The fire charred the
ceiling above the mantelpiece"; "the flames scorched the
ceiling" [synonym: {char}, {blacken}, {sear}, {scorch}]

Char \Char\, Chare \Chare\, v. i.
To work by the day, without being a regularly hired servant;
to do small jobs.
[1913 Webster]


Char \Char\ (ch[aum]r), v. t. [imp. & p. p. {Charred}
(ch[aum]rd); p. pr. & vb. n. {Charring}.] [Prob. the same
word as char to perform (see {Char}, n.), the modern use
coming from charcoal, prop. coal-turned, turned to coal.]
1. To reduce to coal or carbon by exposure to heat; to reduce
to charcoal; to burn to a cinder.
[1913 Webster]

2. To burn slightly or partially; as, to char wood.
[1913 Webster]


Char \Char\, Charr \Charr\, n. [Ir. cear, Gael. ceara, lit.,
red, blood-colored, fr. cear blood. So named from its red
belly.] (Zool.)
One of the several species of fishes of the genus
{Salvelinus}, allied to the spotted trout and salmon,
inhabiting deep lakes in mountainous regions in Europe. In
the United States, the brook trout ({Salvelinus fontinalis})
is sometimes called a char.
[1913 Webster]


Char \Char\, n. [F.]
A car; a chariot. [Obs.] --Chaucer.
[1913 Webster]


Char \Char\, n. [OE. cherr, char a turning, time, work, AS.
cerr, cyrr, turn, occasion, business, fr. cerran, cyrran, to
turn; akin to OS. k["e]rian, OHG. ch["e]ran, G. kehren. Cf.
{Chore}, {Ajar}.]
Work done by the day; a single job, or task; a chore.
[Written also {chare}.] [Eng.]
[1913 Webster]

When thou hast done this chare, I give thee leave
To play till doomsday. --Shak.
[1913 Webster] Char


Char \Char\, Chare \Chare\, v. t. [See 3d {Char}.]
1. To perform; to do; to finish. [Obs.] --Nores.
[1913 Webster]

Thet char is chared, as the good wife said when she
had hanged her husband. --Old Proverb.
[1913 Webster]

2. To work or hew, as stone. --Oxf. Gloss.
[1913 Webster] Char

43 Moby Thesaurus words for "char":
blaze, blister, brand, burn, burn in, burn off, cast, cauterize,
chare, charwoman, chore, cleaner, cleaner-off, cleaner-up,
cleaning lady, cleaning man, cleaning woman, coal, crack, cupel,
custodian, do chars, do the chores, flame, found, janitor,
janitress, labor, oxidate, oxidize, parch, pyrolyze, scorch, sear,
singe, solder, swinge, torrefy, turn a hand, vesicate, vulcanize,
weld, work



安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • c++ - What is a char*? - Stack Overflow
    char const *test = "testing"; I mention this primarily because it's the one you usually really want The bottom line, however, is that char x; will only define a single character If you want a string of characters, you have to define an array of char or a pointer to char (which you'll initialize with a string literal, as above, more often than
  • What is the difference between char array and char pointer in C?
    As the initializer for an array of char, as in the declaration of char a [] , it specifies the initial values of the characters in that array (and, if necessary, its size) Anywhere else, it turns into an unnamed, static array of characters, and this unnamed array may be stored in read-only memory, and which therefore cannot necessarily be
  • Difference between char* and char** (in C) - Stack Overflow
    } int main() { char *s = malloc(5); s points to an array of 5 chars modify( s); s now points to a new array of 10 chars free(s); } You can also use char ** to store an array of strings However, if you dynamically allocate everything, remember to keep track of how long the array of strings is so you can loop through each element and free it
  • What is char ** in C? - Stack Overflow
    Technically, the char* is not an array, but a pointer to a char Similarly, char** is a pointer to a char* Making it a pointer to a pointer to a char C and C++ both define arrays behind-the-scenes as pointer types, so yes, this structure, in all likelihood, is array of arrays of char s, or an array of strings
  • c++ - Difference between char* and char [] - Stack Overflow
    char str[] = "Test"; Is an array of chars, initialized with the contents from "Test", while char *str = "Test"; is a pointer to the literal (const) string "Test" The main difference between them is that the first is an array and the other one is a pointer The array owns its contents, which happen to be a copy of "Test", while the pointer simply refers to the contents of the string (which in
  • c++ - char and char* (pointer) - Stack Overflow
    Think of char* p; as of address in memory You did not initialize this pointer so it does not point to anything, you cannot use it To be safe always: either initialize pointer to zero: char *p = 0; nullptr in C++11 or initialize to some automatic void foo() { char a[100]; char *p = a; } or global memory: char a[100]; void foo() { char *p = a; } or get dynamic memory: char* p = new char
  • Difference between CR LF, LF and CR line break types
    I'd like to know the difference (with examples if possible) between CR LF (Windows), LF (Unix) and CR (Macintosh) line break types
  • c - Is it possible to convert char - Stack Overflow
    So, I decided to switch to an array of pointers, which made everything a lot easier in most of my code But now I need to convert char* to char[] and back again, but I can't figure it out I haven't been able to find anything on google I'm starting to wonder if it's even possible





中文字典-英文字典  2005-2009