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 |
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
What is file in c language?
write a program to swap two variables a=5 , b= 10 without using third variable
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
What are multibyte characters?
Where we use clrscr in c?
Explain what is the most efficient way to store flag values?
c pgm count no of lines , blanks, tabs in a para(File concept)
Explain how does free() know explain how much memory to release?
Explain what are the standard predefined macros?
What are the functions to open and close file in c language?
How can a string be converted to a number?