what are brk, sbrk?
Answer / guest
These are the system calles used to allocate the memory.
brk will call internally when u call malloc func.
| Is This Answer Correct ? | 4 Yes | 1 No |
What is scanf_s in c?
What is meant by inheritance?
Can a variable be both constant and volatile?
how to count no of words,characters,lines in a paragraph.
How to implement variable argument functions ?
Does free set pointer to null?
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Explain modulus operator.
hi send me sample aptitude papers of cts?
What does the message "automatic aggregate intialization is an ansi feature" mean?
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
What is assert and when would I use it?