n00bish inline assembly question

In order to increase my understanding of microprocessors lately, I’ve been trying to integrate inline assembly into my C codes.

I understand that I can use:

mov memoryPlace, registerPlace

in order to get something into memory.

But once I’m out of my __asm block, how do I find that memory location where I put my data, so I can successfully integrate it into my C program.

Like, how would I be able to access those locations in memory I write to using a C program?