I am trying to print out an unsigned long long like this:
unsigned long long
printf(\"Hex add is: 0x%ux \", hexAdd);
but I am getting type conv
try %llu - this will be long long unsigned in decimal form
%llu
%llx prints long long unsigned in hex
%llx