Question: Consider the following three C functions : [ PI ] int * g ( void ) { int x = 1 0 ; return (
Consider the following three C functions :
PI int g void
int x;
return &x;
P int g void
int px;
px;
return px;
P int g void
int px;
px new int;
px;
return px;
Which of the above three functions are likely to cause problems with pointers?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
