Question: #include #include int main ( void ) { int * numPtr 1 = NULL; int * numPtr 2 = NULL; / * Your solution goes

#include
#include
int main(void){
int* numPtr1= NULL;
int* numPtr2= NULL;
/* Your solution goes here */
scanf("%d", numPtr1);
scanf("%d", numPtr2);
printf("numPtr1=%d, numPtr2=%d
",*numPtr1,*numPtr2);
free(numPtr1);
free(numPtr2);
return 0;
}

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 Databases Questions!