6. Which of the Following is not defined in string.h?
A)strspn()
B)strerror()
C)memchr()
D)strod()
Answer Posted / vishnu948923
d, strod is not avaliable
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What is context in c?
What is pointer to pointer in c with example?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Explain how can I read and write comma-delimited text?
Which driver is a pure java driver
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Can a pointer be static?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Describe explain how arrays can be passed to a user defined function
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
How can I swap two values without using a temporary?
What is the use of define in c?
How can I read in an object file and jump to locations in it?
What happens if header file is included twice?
What is #ifdef ? What is its application?