Which of the Following is not defined in string.h?
A)strspn()
B)strerror()
C)memchr()
D)strod()
Answer Posted / pinkey
d)strod()
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What are comments and how do you insert it in a C program?
What is ponter?
what are the advantages of a macro over a function?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is the difference between struct and typedef struct in c?
Is c still used?
What is the right type to use for boolean values in c?
What is the description for syntax errors?
What are the two types of functions in c?
Are there any problems with performing mathematical operations on different variable types?
What is hungarian notation? Is it worthwhile?
Why doesnt that code work?