answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you write words using CHAR function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write a user define function of strcpy?

char* u_strcpy (char* dest, const char* src) { char* temp = dest; while ((*dest++ = *src++) != '\0'); return temp; }


How to write a function to reverse an array without using square brackets in the function?

void reverse (char* str) { char *left, *right, temp; left = right = str; while (*right) ++right; --right; while (left < right) { temp = *left; *left = *right; *right = temp; ++left; --right; } }


How do you write a C program to copy to strings using pointers?

mystrcpy (char* dest, char* src) { while ((*dest++ = *src++) != '\0); }


Write a function for concatnating the string s1 s2 and storing the result in string s3?

char *strmerge (char *s3, const char *s1, const char *s2) { strcpy (s3, s1); strcat (s3, s2); return s3; }


What does CHAR means in Excel?

CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)CHAR is a function that returns a character from a number code. All letters and digits and other characters on your keyboard have special codes. If you know these codes, they can be used with the CHAR function to get the characters you want. Here are just a few examples.To get the letter a, you can type:=CHAR(97)To get the letter A, you can type:=CHAR(65)To get the digit 1, you can type:=CHAR(49)


How would you write a user defined function to find a length of a string without using library function?

/* Assuming C:* without using any standard string.h functions* two possible solutions:*/int length_of_string (srce)char * srce;{char *ptr = srce - 1;while (*(++ptr));return (ptr - srce);}int len_of_str (srce)char *srce;{int len = 0;while (*srce++) len++;return len;}If you want it in another programming language please re-ask specifying the required language.


How do you write a function called mystrlen that receives a pointer to a character string so that the function return the length of the string?

int mystrlen (const char *s) { const char *t; if (!s) return 0; for (t=s-1;*++t;); return t-s; }


Write a function prototype named test that accepts two parameters an integer and character and returns a float?

float test(int, char);


What is style of function is not obsolete in c language?

Old: function (par1, par2) int par1; char *par2; {...} New: int function (int par1, char *par2) {...}


The decryption code is?

the decryprtion code function is void decrypt_mono(char word[],char cypher[])


Write a program in c to convert a given string to lower case?

Use the tolower() function. Example: char* a = 'X'; a = tolower(a); printf("%c", a);


Pointer version of string function strcpy?

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