Which of the Following is not defined in string.h?
A)strspn()
B)strerror()
C)memchr()
D)strod()
Answer Posted / jitendra kumar arya
D)strod{}
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
Find MAXIMUM of three distinct integers using a single C statement
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is || operator and how does it function in a program?
What is the use of f in c?
What is a c token and types of c tokens?
What does 3 periods mean in texting?
What is an lvalue in c?
What is action and transformation in spark?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
How can you increase the size of a statically allocated array?
What is the use of typedef in structure in c?
What are called c variables?
How many types of operator or there in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }