Answer Posted / srinath, hyd
ya. this is an memory allocation porpose.
some other allocations are there calloc(), alloc()
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
In which language linux is written?
Does free set pointer to null?
Explain the array representation of a binary tree in C.
What is sizeof return in c?
How can you increase the size of a statically allocated array?
Explain two-dimensional array.
what is the basis for selection of arrays or pointers as data structure in a program
What is a pointer in c?
How #define works?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How to find a missed value, if you want to store 100 values in a 99 sized array?
Explain which function in c can be used to append a string to another string?
What is scope of variable in c?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250