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 |
Write a C program in Fibonacci series.
what is unsigened char and what is the difference from char
Describe dynamic data structure in c programming language?
what is object oriental programing?
How is pointer initialized in c?
code for reverse alternate words from astring
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Differentiate between the = symbol and == symbol?
What are 3 types of structures?
in which language c language is written?
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
What is oops c?