Answer Posted / rpjanaka
Then, is there a way to get out the number of bytes that
heap manager going to free, when I call free() function.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain Function Pointer?
What is the best way to comment out a section of code that contains comments?
How many header files are in c?
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 different types of objects used in c?
Write a program to swap two numbers without using third variable in c?
What does typeof return in c?
What is the difference between text and binary modes?
What is typedf?
Explain how do you print only part of a string?
What is file in c language?
Write a program to print "hello world" without using a semicolon?
Write a simple code fragment that will check if a number is positive or negative.
largest Of three Number using without if condition?
Explain what is the benefit of using enum to declare a constant?