Answer Posted / sourisengupta
malloc returns a pointer to the allocated space if required
memory is available otherwise it will return a null pointer.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Why should I use standard library functions instead of writing my own?
what is the significance of static storage class specifier?
Disadvantages of C language.
Is swift based on c?
Why we use int main and void main?
What is the difference between far and near in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Describe static function with its usage?
What are static variables in c?
Explain what is the general form of a c program?
how could explain about job profile
Why double pointer is used in c?
will u please send me the placement papers to my mail???????????????????
#include
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.