Question: In C, why it is a bad thing to return address of local variables? For example, following is a bad case: int *function(){ int i
In C, why it is a bad thing to return address of local variables?
For example, following is a bad case:
int *function(){
int i = 11;
return &i;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
