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 |
Is null a keyword in c?
How to write a code for reverse of string without using string functions?
What does sizeof return c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
What is the use of ?: Operator?
Who had beaten up hooligan "CHAKULI" in his early college days?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
Can stdout be forced to print somewhere other than the screen?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
What is the use of c language in real life?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
What is the translation phases used in c language?