Re: UnSigned Long



Joriveek wrote:
> Hi,
>
> I want to store myvarz = 3000000000;
>
> I have declared myvarz as unsigned long; still not taking.

#include <stdio.h>

int main(void)
{
unsigned int myvarz = 3000000000;
printf("%u\n",myvarz);
return 0;
}
This is working in msvc++ 6.0 and gcc.Please post your code

Johan Borkhuis wrote:
> Some people are lucky, others are not.....
>
very true.

.