Sir as you can see the hexadecimal address is 0x7ff…Then can yoi please tell that what is x in the address as hexadecimal supports alphabets inly nupto F.Also can you please share the name and downloading link of the compiler for practicing codes. Also can you please shed light on void* datatype.
Regarding void* datatype
hey @Hk199977, that x denotes that address is written in hexadecimal form beacuse hex sounds similar to x.
for compiling code you can use https://ide.codingblocks.com/
void* denotes void pointer, it is just line other pointer but has no associated data type with it. It can hold address of any type and can be typcasted to any type.