Preprocessor

Hi,

Anyone please explain the functionality of ## in c.
I didn't get the following preprocessor directives,

# define LL(x) x ## LL
# define LL(x) x ## i64

Thanks,
Naga:cool:

Concatenation operator.
See wikipedia here: C preprocessor - Wikipedia, the free encyclopedia, under
token concatenation.