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 |
Why #include is used in c language?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
What does void main () mean?
Why doesnt long int work?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
What is define c?
Do you know the use of 'auto' keyword?
Which weighs more, a gram of feathers or a gram of gold?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
write a program to print data of 5 five students with structures?
What would be an example of a structure analogous to structure c?