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

Where are c variables stored in memory?

0 Answers  


What are unions in c?

0 Answers  


What is printf () in c?

0 Answers  


Describe newline escape sequence with a sample program?

0 Answers  


How was c created?

0 Answers  






#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?

6 Answers   Hughes,


What are types of structure?

0 Answers  


Do you know what is the purpose of 'extern' keyword in a function declaration?

0 Answers  


How can I read and write comma-delimited text?

0 Answers  


What are the 5 elements of structure?

0 Answers  


What is Heap?

3 Answers  


Categories