How can you dynamically allocate memory in C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Memory can be dynamically allocated using functions like malloc(), calloc(), realloc(), and freed using free().
| Is This Answer Correct ? | 0 Yes | 0 No |
Memory can be dynamically allocated using functions like malloc(), calloc(), realloc(), and freed using free().
| Is This Answer Correct ? | 0 Yes | 0 No |
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
which operator is known as dummy operator in c?
Method Overloading exist in c ?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
c program to subtract between two numbers without using '-' sign and subtract function.
What are the scope of static variables?
How can you increase the size of a statically allocated array?
can we print any string without using terminator?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
What is the use of #include in c?