What is the DWORD format specifier in printf on windows PC in C Win32 API

1 Answer

0 votes
#include <windows.h>
#include <stdio.h>

int main(void) {

    DWORD n1 = 8339234;
    printf("%lu\n", n1);
    
    DWORD n2 = 97945721;
    printf("%ld\n", n2);

    return 0;
}




/*
run:

8339234
97945721

*/

 



answered Nov 13, 2021 by avibootz
...