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 the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Explain how do you search data in a data file using random access method?
How to avoid structure padding in C?
How do you initialize pointer variables?
WHAT IS PRE POSSESSORS?
How can I get random integers in a certain range?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
How can I pad a string to a known length?
How can I access an I o board directly?
How can type-insensitive macros be created?
Code for calculating square root without using library function, of math.h
Write a c program to build a heap method using Pointer to function and pointer to structure ?