answersLogoWhite

0

A char is a time, a turn or an occasion, an odd job, or a woman employed to do housework.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Is char a identical to char a?

'char a' and 'char a' are identical.


Are the three declaration char a char a and char c same?

Yes.


What is the abbreviation of Charleston?

char or you can say char harbor as in the harbor of char


How do you write words using CHAR function?

The CHAR function in Excel or other spreadsheet applications is used to return a character specified by a code number. For example, CHAR(65) returns the letter "A" because 65 is the ASCII code for "A." To write words using the CHAR function, you can concatenate multiple CHAR functions together, such as =CHAR(72) & CHAR(101) & CHAR(108) & CHAR(108) & CHAR(111) to spell "Hello." This method allows you to create strings by combining the ASCII values of the desired characters.


How do you apply if in char type in c plus plus?

char x = "C"; if(char == 'C') { } else { }


What has the author char written?

char. has written: 'char occasional papers-6 resettlement units the future'


Program to copy one string to another?

As usual, you should check official documentation before you ask a question like this. string.h // Copies num characters from source into destination. char* strncpy (char* destination, const char* source, size_t num); // Copies characters from source into destination. char* strcpy (char* destination, const char* source);


How is an identifier defined as a char type?

char indentifier_name;


Which stone is Char Minar made of?

char minar


What is arctic char?

An arctic char is an alternative name for the saibling, a member of the char family of fish native to Europe.


How do you code a character literal?

char c = 'a'; 'a' is a literal character, which assigns the value 0x61 (ASCII code 97 decimal) to the char variable c. The following lines are therefore equivalent: char a = 0x61; char b = 97; char c = 'a';


Pointer version of string function strcpy?

char* strcpy(const char* src, char* dst) { char* tmp = dst; while ((*dst++ = *src++) != '\0'); return tmp; }