what are brk, sbrk?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

differentiate built-in functions and user – defined functions.

619


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1125


What is extern keyword in c?

639


how many errors in c explain deply

1625


write a program to print largest number of each row of a 2D array

1866






I need testPalindrome and removeSpace #include #define SIZE 256 /* function prototype */ /* test if the chars in the range of [left, right] of array is a palindrome */ int testPalindrome( char array[], int left, int right ); /* remove the space in the src array and copy it over to the "copy" array */ /* set the number of chars in the "copy" array to the location that cnt points t */ void removeSpace(char src[], char copy[], int *cnt); int main( void ) { char c; /* temporarily holds keyboard input */ char string[ SIZE ]; /* original string */ char copy[ SIZE ]; /* copy of string without spaces */ int count = 0; /* length of string */ int copyCount; /* length of copy */ printf( "Enter a sentence:\n" ); /* get sentence to test from user */ while ( ( c = getchar() ) != '\n' && count < SIZE ) { string[ count++ ] = c; } /* end while */ string[ count ] = '\0'; /* terminate string */ /* make a copy of string without spaces */ removeSpace(string, copy, ©Count); /* print whether or not the sentence is a palindrome */ if ( testPalindrome( copy, 0, copyCount - 1 ) ) { printf( "\"%s\" is a palindrome\n", string ); } /* end if */ else { printf( "\"%s\" is not a palindrome\n", string ); } /* end else */ return 0; /* indicate successful termination */ } /* end main */ void removeSpace(char src[], char copy[], int *cnt) { } int testPalindrome( char array[], int left, int right ) { }

2205


What is a macro?

654


List the variables are used for writing doubly linked list program.

1615


Write a program to check armstrong number in c?

633


How can I find the modification date and time of a file?

596


What are the advantages of c language?

662


What does 3 periods mean in texting?

595


How is a null pointer different from a dangling pointer?

555


List some basic data types in c?

557


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

583