answersLogoWhite

0

Which header is accessible through string function?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

I guess you wanted to ask which header is to be included for string functions. It's string.h

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which header is accessible through string function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the header file for string library function?

string.h


How do you write string in reverse through the HTML tags?

Not possible through html. Use php strrev function. For eg:


Geta is a math function or string function?

GetA is a math function and not a string function.


Which is string function starchy or strlength?

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


Why is your C plus plus compiler could not find the string object?

Probably because you haven't include the <string> header anywhere in the translation unit.


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);


Write a method header for a method named find that takes a String and a double as parameters and returns an integer?

int find(String str, double d);


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.


How string can be passed to a function in c?

between parentheses: funname ("string")


Reverse of a string without using string handling function?

shashi


Which text function replaces text in a string?

The REPLACE function.


In order to execute a function in program what is needed first to do so?

Before a function can be called the compiler needs to know the function's type and the number and type of its arguments to ensure the call is valid. This information is provided by the function declaration, which must be visible to the compiler prior to the point of the call (a forward declaration). With a two-pass compiler, the declaration may be placed before or after the call point. Ideally, function declarations should be placed in a header file, with the functions grouped in some logical manner. For instance, all string-handling functions may be declared in a "string.h" header. in this way, the programmer need only include the header to ensure the declarations are consistent across all translation units that require those declarations. In addition, all types required by the function must also be declared to the compiler. Again, these may be placed in a header to ensure the types are declared consistently.