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 |
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
how to construct a simulator keeping the logical boolean gates in c
What are the advantages of c language?
what is the diffrenet bettwen HTTP and internet protocol
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
whether itis a structured language?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
how to impliment 2 or more stacks in a single dimensional array ?
Is it better to use malloc() or calloc()?
What are qualifiers?
What is volatile in c language?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value