what is the similarities between. system call and library
function?



what is the similarities between. system call and library function?..

Answer / prasannanjaneyulu.kandimalla

System calls are kernel functions and library functions are
specified to a particular library files.
eg:
sqrt() is a libray function of <math.h> libray file.

Is This Answer Correct ?    12 Yes 5 No

Post New Answer

More C Interview Questions

write a program of bubble sort using pointer?

3 Answers   TCS,


Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)

6 Answers   Subex,


What is the difference between macros and inline functions?

5 Answers   Global Edge, L&T,


What is the difference between procedural and functional programming?

0 Answers  


what is output of the following statetment?Printf(“%x”, -1<<4); ?

5 Answers  






i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


Why & is used in c?

0 Answers  


how to print 2-D array using a single for loop?

2 Answers   Mind Tree, TCS, Value Labs,


could u able to tell about suresoft technical session

1 Answers  


Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child

10 Answers   IBM, Infosys,


please give me some tips for the placement in the TCS.

0 Answers   TCS,


What is the difference between constant pointer and pointer to a constant. Give examples.

4 Answers   TCS,


Categories