Which of the Following is not defined in string.h?
A)strspn()
B)strerror()
C)memchr()
D)strod()
Answers were Sorted based on User's Feedback
Is struct oop?
write a program to remove duplicate from an ordered char array? in c
how do you programme Carrier Sense Multiple Access
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
Why is c so important?
Write a simple code fragment that will check if a number is positive or negative.
What is the mean of function?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is external variable in c?
How do you determine a file’s attributes?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Write a program to swap two numbers without using third variable in c?