How will you allocate memory to double a pointer?
Answer / pavan135
main()
{
char *pch; **ppch;
pch = malloc(100);
if(pch == NULL)
return -1;
ppch = &pch;
}
| Is This Answer Correct ? | 2 Yes | 0 No |
what is c
Why use int main instead of void main?
What is meant by global static? why we have to use static variable instead of Global variable
how does printf function work
what is c programming?
what is the difference between declaration and definition of a variable or function ?
What is scope rule in c?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
int *a[5] refers to
What's the total generic pointer type?
What is the purpose of & in scanf?
What is unsigned int in c?