Why should I use standard library functions instead of writing my own?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


what is the height of tree if leaf node is at level 3. please explain

0 Answers  


What is main function in c?

0 Answers  


What are the disadvantages of external storage class?

0 Answers  


#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }

6 Answers   ME,


what is c?

13 Answers   Tech Mahindra,


What the advantages of using Unions?

0 Answers   TISL,


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


What is the use of typedef in structure in c?

0 Answers  


what defference between c and c++ ?

6 Answers  


Give differences between - new and malloc() , delete and free() ?

0 Answers   Genpact,


What's the difference between constant char *p and char * constant p?

0 Answers   Celstream,


Categories