#include stdio.h
int main(){
int x = 50, *ptr;
ptr = &x;
*ptr = 30;
printf("%d", x);
}

Posted on by