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 |
Is c an object oriented programming language?
develop algorithms to add polynomials (i) in one variable
What are the storage classes in C?
What is Function Pointer? Explain with example?
What is identifier in c?
What is getch?
Explain in detail how strset (string handling function works )pls explain it with an example.
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
what is the difference between. system call and library function?
What is the difference between File pointer and Internal Charecter Pointer?
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)