answersLogoWhite

0

The string function is strlength and it is evoked to return the length of a string.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Geta is a math function or string function?

GetA is a math function and not a string function.


How do you reverse a string in PHP without using a function?

Without any function is impossible. So I'll assume you mean any coded function, in which case the predefined function below is your answer.$string = strrev($string);


Which string function appends source string to the destination?

The string function that appends a source string to a destination string is typically called strcat in C and C++. This function takes two arguments: the destination string and the source string, and it appends the source string to the end of the destination string, modifying the destination string in place. In other programming languages, similar functionality may be achieved with functions like concat or the + operator for string concatenation.


What function are used for string length in visual basic?

string length is a function use to check the lenght of a string i.e number of alphabets in a word or sentence.


Reverse of a string without using string handling function?

shashi


How string can be passed to a function in c?

between parentheses: funname ("string")


Write a program to implement the various operations on string such as length of string concatenation reverse of a string copy of a string to another in c anguage?

These should work, if used correctly. // stores srcL + srcR into dest // NOTE: dest must be at least as large as srcL + srcR void strConcat(const char* srcL, const char* srcR, char* dest) { const int lengthL = strLength(srcL); const int lengthR = strLength(srcR); // copy srcL into front of dest int i; for(i = 0; i < lengthL; ++i) { dest[i] = srcL[i]; } // copy srcR into the rest of dest for(i = 0; i < lengthR; ++i) { dest[lengthL + i] = srcR[i]; } dest[lengthL + i] = '\0'; } // copies characters from src to dest // NOTE: dest must be at least as large as src void strCopy(const char* src, char* dest) { const int length = strLength(src); // copy int i; for(i = 0; i < length; ++i) { dest[i] = src[i]; } } // reverses str and puts the result in buff // NOTE: buff must be at least as large as str void strReverse(const char* str, char* buff) { const int length = strLength(str); // special case for zero-length strings if( length == 0 ) { return; } // reversify int i; for(i = 0; i < length; ++i) { buff[i] = str[length - i - 1]; } buff[i] = '\0'; } // returns the number of characters in str int strLength(const char* str) { int length = 0; // take advantage of the fact that all strings MUST end in a null character while( str[length] != '\0' ) { ++length; } return length; }


Which text function replaces text in a string?

The REPLACE function.


Concat a string without using any inbuilt function in java?

Use "+". Example: String string = "does this answer " + "your question?";


Program to find the size of the string without using string functions?

You can't. If you want to find the length of a String object, you must use at least one of the String methods. Simply iterate over your char* and count the number of characters you find before you reach the null character . int strLength(const char* str) { int length = 0; // take advantage of the fact that all strings MUST end in a null character while( str[length] != '\0' ) { ++length; } return length; }


Write the function replace which finds the string from in the string string and replaces it with the?

Hay buddy this is homework. U have to solve it by urself.


What function returns the length of a string?

strlen


Define string handling function?

Penis


What function returns the number of occurrences of a specified character in the input string?

The charAt function returns the number of occurrences of a specified character in the input string.


How do you accept a string by using getch() function with an example?

explain about function call


Function finds the occurrence of a given string in another string?

in C: strstr, declared in string.h


Which function joins one string with another to produce single string that contains both?

strcat()


How can you call a function given its name as a string?

we have to construct a table of two field structures,where the first field is the funtion name as a string and the second field is just the function name.then search the table to get a string match in the first field and use the second field to call the function.


What text function capitalize the first letter of a string of data?

The capitalize() function in Python can be used to capitalize the first letter of a string. It returns a copy of the string with the first letter capitalized and all other letters in lowercase.


What is the function of vbCRLF constant in a message box function?

That is a carriage return line feed. Basically force a new line in a string. Example: "This is a string that is on one line." would return: This is a string that is one one line. Example: "This is a string" & vbCRLF & "that is on two lines." would return: This is a string that is on two lines.