Answer Posted / abhradeep chatterjee
yes, the above two answers are correct.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is structure padding and packing in c?
Why isn't any of this standardized in c? Any real program has to do some of these things.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is union and structure in c?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is the use of #include in c?
Explain what does the format %10.2 mean when included in a printf statement?
What do you mean by Recursion Function?
Why & is used in scanf in c?
What are the storage classes in C?
What is build process in c?
Explain what is wrong with this program statement?
What are dangling pointers in c?
What is #line in c?
What is header file definition?