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 |
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
What is the difference between #include and #include 'file' ?
Write a program to exchange two variaables without temp
Explain what are global variables and explain how do you declare them?
What should not contain a header file?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
Explain what’s a signal? Explain what do I use signals for?
Why c language?
which is the best antivirus and how to update it
Taking an example,differentiate b/w loader and linker ?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?