pick out the odd one out of the following
a.malloc()
b.calloc()
c.free()
d.realloc()
Answer Posted / manishsoni
here malloc(),calloc(),realloc)() are the memory allocation
function after allocation of memory free is used to freed
the memory which is allocated by the above function.
so the free is odd term.
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is c value paradox explain?
What is the advantage of c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
what is the difference between class and unio?
What is pointer & why it is used?
Why is c called c?
What are lookup tables in c?
How are portions of a program disabled in demo versions?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is extern keyword in c?
Explain what is the difference between text files and binary files?
How can a program be made to print the line number where an error occurs?
Tell me what are bitwise shift operators?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.