What will happen when freeing memory twice
Answers were Sorted based on User's Feedback
Answer / veeresh
Memory is the very valuable, if we leave memory freely then
memory will be wasted and cant be used.
Is This Answer Correct ? | 0 Yes | 3 No |
In c language can we compile a program without main() function?
Explain what a Binary Search Tree is.
Explain the difference between call by value and call by reference in c language?
how to execute a program using if else condition and the output should enter number and the number is odd only...
change to postfix a/(b+c*d-e)
What are the disadvantages of a shell structure?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
where do we use structure pointer?
What is the use of volatile?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
Are enumerations really portable?
with out using main how to execute the program?