Newer
Older
src / c / c-tutorial / hex2dec.h
#include <stdio.h>

int main() {
	char a;

	a = 0x0c;

	printf("Value is: %d\n", a);
	return 0;
}