Search code examples
c++stackpragma

#pragma comment(linker, "/STACK:val"), which base val can be?


Is

#pragma comment(linker, "/STACK:0x04000000")

equivalent to

#pragma comment(linker, "/STACK:67108864")

?


Solution

  • Yes 0x04000000 is the hex (base 16) representation of 67108864 (base 10)