Using long numbers

How to use long numbers (>32k) in c?..help me

what >32k stands for ? 32*1024?

simply

int a = 400000;

The range of 32767 was the limit in old 16 bit systems Most integer variables today occupy 32 bit.
You can use long by using %ld and long long by using %lld which is 64 bit.