help......
-
hello, does the possibility exist to convert hexadecimal in integer? thanks, mfc
-
hello, does the possibility exist to convert hexadecimal in integer? thanks, mfc
Yes. In what context ? You can do this: int n = 0x0BADF00D; you can also use iostreams to display a number of any format as any other, my ostringstream article shows how. Christian No offense, but I don't really want to encourage the creation of another VB developer. - Larry Antram 22 Oct 2002 Hey, at least Logo had, at it's inception, a mechanical turtle. VB has always lacked even that... - Shog9 04-09-2002 During last 10 years, with invention of VB and similar programming environments, every ill-educated moron became able to develop software. - Alex E. - 12-Sept-2002
-
Yes. In what context ? You can do this: int n = 0x0BADF00D; you can also use iostreams to display a number of any format as any other, my ostringstream article shows how. Christian No offense, but I don't really want to encourage the creation of another VB developer. - Larry Antram 22 Oct 2002 Hey, at least Logo had, at it's inception, a mechanical turtle. VB has always lacked even that... - Shog9 04-09-2002 During last 10 years, with invention of VB and similar programming environments, every ill-educated moron became able to develop software. - Alex E. - 12-Sept-2002
thank you for your reply! i have hexadecimals in a string and i need them as integer numbers. how can i get it? thanks, mfc
-
thank you for your reply! i have hexadecimals in a string and i need them as integer numbers. how can i get it? thanks, mfc
sscanf[^] appears to be what you're looking for. Christian No offense, but I don't really want to encourage the creation of another VB developer. - Larry Antram 22 Oct 2002 Hey, at least Logo had, at it's inception, a mechanical turtle. VB has always lacked even that... - Shog9 04-09-2002 During last 10 years, with invention of VB and similar programming environments, every ill-educated moron became able to develop software. - Alex E. - 12-Sept-2002
-
sscanf[^] appears to be what you're looking for. Christian No offense, but I don't really want to encourage the creation of another VB developer. - Larry Antram 22 Oct 2002 Hey, at least Logo had, at it's inception, a mechanical turtle. VB has always lacked even that... - Shog9 04-09-2002 During last 10 years, with invention of VB and similar programming environments, every ill-educated moron became able to develop software. - Alex E. - 12-Sept-2002
sorry i forgot: thank you very much.....great...