Answer Posted / pavan135
main()
{
char *pch; **ppch;
pch = malloc(100);
if(pch == NULL)
return -1;
ppch = &pch;
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How can I run c program?
why we wont use '&' sing in aceesing the string using scanf
What is the difference between volatile and const volatile?
What is variable in c example?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is the difference between array and linked list in c?
Why array is used in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Write a program of prime number using recursion.
In c language can we compile a program without main() function?
What are global variables and explain how do you declare them?
Why do we use int main?
What is clrscr ()?
Explain what is the difference between #include and #include 'file' ?
Is there a built-in function in C that can be used for sorting data?