what are the techniques for reducing the fragility of a memory bug?



what are the techniques for reducing the fragility of a memory bug?..

Answer / clara

Don't re-use memory.
Put empty space between memory blocks.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C C++ Errors Interview Questions

what is macro in c? Difference between single linked list & double linked list what is fifo & lifo? what is stack & queue?

2 Answers   TCS,


void main() { int i=7; printf("N= %*d",i,i); }

6 Answers   HCL,


Write a c-programe that input one number of four digits and find digits sum?

2 Answers  


full c programming error question based problem

3 Answers   HCL, TCS,


printy(a=3,a=2)

3 Answers  


how tally is useful?

2 Answers  


I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.

1 Answers  


To generate the series 1+3+5+7+... using C program

18 Answers  


char* f() return "hello:"; void main() {char *str=f(); }

1 Answers  


What is the out put of this programme? int a,b,c,d; printf("Enter Number!\n"); scanf("%d",&a); while(a=!0) { printf("Enter numbers/n"); scanf("%d%d%d",&b,&c,&d); a=a*b*c*d; } printf("thanks!"); getche(); Entering numbers are a=1,b=2,c=3,d=4 b=3,c=4,d=-5 b=3,c=4,d=0

5 Answers   TCS,


what is syntax error?

3 Answers  


Answering Yes or No in C++...using only stdio.h and conio.h..........help me please...? here's must be the output of the program: Screen A Exam No. items Score 1 20 20 2 35 35 Another Entry? [Y] or [N] : Screen B: Record No. Student's Name: 1 Fernando Torres 2 Chuck Norris Note: if you press Y, the program must repeat the procedure in screen A, then if N, the program must proceed to the screen B....Please Help me out............

1 Answers  


Categories