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 |
What is the meaning When we write "#include" what is # and what does include does there???
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Explain the binary height balanced tree?
What is unsigned int in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
how to copy a string without using c function
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Explain why can’t constant values be used to define an array’s initial size?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
What are the different data types in C?
where can function pointers be used?