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 sizeof in c?
Can you add pointers together? Why would you?
What is static volatile in c?
What is union and structure?
Explain what is the difference between the expression '++a' and 'a++'?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What is the difference between array and pointer in c?
What is an expression?
What do header files do?
What is void main ()?
program to convert a integer to string in c language'
When should a type cast be used?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Where we use clrscr in c?
How would you rename a function in C?