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 |
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
What are the header files used in c language?
What is the default value of local and global variables in c?
How to receive strings with spaces in scanf()
write an algorithm to display a square matrix.
What is a function in c?
What is union and structure?
Why the use of alloca() is discouraged?
YBJBU6
what is difference between C and C++
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is pointers in c?