Answer Posted / hr@tgksolutions.com
Memory can be dynamically allocated using functions like malloc(), calloc(), realloc(), and freed using free().
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the keywords in c?
i have a written test for microland please give me test pattern
What do you mean by invalid pointer arithmetic?
how to introdu5ce my self in serco
Explain data types & how many data types supported by c?
What is the purpose of scanf() and printf() functions?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is array of structure in c?
Explain do array subscripts always start with zero?
What are variables and it what way is it different from constants?
In C language, a variable name cannot contain?
What is a node in c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is the size of a union variable?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }