Hello, Dear all. I am using Dev-C++ 4.9.9.2. My question is how to enable %zu .
The following program prints `zu' instead of an integer, which is what I expect.
How can I set up Dev-C++ to support %zu ?
Code:#include <stdio.h> int main( void ) { printf( "%zu", sizeof(int) ); getchar(); }



LinkBack URL
About LinkBacks


