Also observe that when the Python interpreter is used in interactive mode, the necessary prompts are changed to assist you in entering the statements.
The prompt in this scenario changes to reflect the fact that the statement is still incomplete after you insert the keyword if. We press enter to signal that the statement is finished once we've finished it this way. Python then completes the entire statement's execution before going back to the previous prompt and waiting for new input.
#include<stdio.h>
int main(){
long int value1 = 200000, value2 ;
long *lPtr;
lPtr = &value1;
printf("%d", *lPtr);
value2 = *lPtr;
printf("\n%d", value2);
printf("\n%d", &value1);
printf("\n%d", lPtr);
}
Learn more about python here-
https://brainly.com/question/14668983
#SPJ4