6. 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
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
What are terms in math?
Which is the best website to learn c programming?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
How do I get an accurate error status return from system on ms-dos?
Find greatest number out of 10 number without using loop.
Write the syntax and purpose of a switch statement in C.
Explain how can I manipulate strings of multibyte characters?
How can I allocate arrays or structures bigger than 64K?
What does dm mean sexually?
Why is malloc used?