Answer Posted / anjana devi
calloc will reallocate the memeory created by malloc
| Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
What is pointer to pointer in c language?
How can you be sure that a program follows the ANSI C standard?
Is there a built-in function in C that can be used for sorting data?
How can I avoid the abort, retry, fail messages?
What is the auto keyword good for?
What is the size of structure pointer in c?
given post order,in order construct the corresponding binary tree
What are the Advantages of using macro
What are the advantages and disadvantages of a heap?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
What is the difference between declaring a variable by constant keyword and #define ing that variable?
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!+....
Is it possible to execute code even after the program exits the main() function?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What do you mean by scope of a variable in c?