What do you mean by dynamic memory allocation in c? What functions are used?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages and disadvantages of a heap?
Disadvantages of C language.
write a program of palindrome(madam=madam) using pointer?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
What's the best way to declare and define global variables?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
What is #include conio h?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer