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 |
write a program to generate address labels using structures?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
Why is C language being considered a middle level language?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
Write a C program to convert an integer into a binary string?
What are loops c?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
What are the different types of errors?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
how to find the largest element of array without using relational operater?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Explain what are the advantages and disadvantages of a heap?