what is the maximum no. of bytes calloc can allocate
Answer Posted / surya pratap singh
depend on the size
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What does the function toupper() do?
What is a loop?
How can I avoid the abort, retry, fail messages?
Can you mix old-style and new-style function syntax?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is maximum size of array in c?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What does main () mean in c?
What is the right type to use for boolean values in c?
What do you mean by recursion in c?
What is your stream meaning?
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
Why do we use int main instead of void main in c?
What are header files? What are their uses?
How to delete a node from linked list w/o using collectons?