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 |
Explain what are linked list?
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
Can you define which header file to include at compile time?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
write a c program to store and print name,address,roll.no of a student using structures?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
write a programme to convert temperature from farenheit to celcius?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
What is sizeof in c?
How do you do dynamic memory allocation in C applications?
hi how to convert program from notepad to turboc editor can u please help me