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=10;
return (&x);
}
[P2] int * g (void)
{
int * px;
*px=10;
return px;
}
[P3] int * g (void)
{
int * px;
px = new int;
*px=10;.
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 blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!