what is the maximum no. of bytes calloc can allocate
Answers were Sorted based on User's Feedback
Answer / divyanka mishra
depends on the size of RAM. it can allocate memory as per
as RAm's size.
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / maruthi prapulla kumar(bb09105
n Bytes Depending up on the size of the RAM If RAM size is
less it is less Ram size is high Its High
| Is This Answer Correct ? | 1 Yes | 2 No |
What is the difference between malloc() and calloc() function in c language?
Why is main function so important?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
What does *p++ do?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
What is a loop?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"