I have a problem while using the printf function to print values of type unsigned long long int
printf
unsigned long long int
I have no idea what\'s wrong. I\'m using De
long long int is a type from the C99 standard, MSVC doesn't support this. Take a compiler with C99 support (like MinGW for Windows) and it will work.