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 function definition in c?
Apart from dennis ritchie who the other person who contributed in design of c language.
What is the use of volatile?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is the equivalent code of the following statement in WHILE LOOP format?
Explain main function in c?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Can an array be an Ivalue?
what is calloc and malloc?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?