i just wrote a code
int main(void){
int* B=malloc(sizeof(int));
printf("%p",B);
}
to check if it allocates different memory every time i run it, but i forgot to add free(); in this, so how can i free that memory now, which has been used by this code to allocate it to the variable B?