Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?


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

Post New Answer

More C Interview Questions

main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }

1 Answers   CDAC,


wt is diference between int and int pointer as same as float and float pointer and char and char pointer

8 Answers   CTS, Infosys,


What is include directive in c?

0 Answers  


What is a c token and types of c tokens?

0 Answers  






What are control structures? What are the different types?

0 Answers  


struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??

9 Answers   Verifone,


Combinations of fibanocci prime series

0 Answers  


Explain the use of fflush() function?

0 Answers  


What is difference between structure and union in c?

0 Answers  


What is the difference between arrays and pointers?

0 Answers  


what is the function of .h in #include<stdio.h> in c ?

23 Answers   HCL, IBM, Wipro,


Categories