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
What are register variables? What are the advantage of using register variables?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is the main difference between calloc () and malloc ()?
How can I write a function that takes a format string and a variable number of arguments?
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
How can I split up a string into whitespace-separated fields?
What is a floating point in c?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is the best way to comment out a section of code that contains comments?
Tell me what are bitwise shift operators?
What is chain pointer in c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is conio h in c?
Why is #define used?