Answer Posted / tamil
malloc is a pointer it is used to allocate memory
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you convert strings to numbers in C?
What is the difference between text and binary i/o?
What are 'near' and 'far' pointers?
Why clrscr is used after variable declaration?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
what are the 10 different models of writing an addition program in C language?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
State two uses of pointers in C?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What are pointers really good for, anyway?
Is malloc memset faster than calloc?
What are structural members?
How can you tell whether a program was compiled using c versus c++?
Can math operations be performed on a void pointer?
How does normalization of huge pointer works?