Hello,
I want to use the Scan function with an unsigned long long, but i don't found the format modifier to used to this type.
With sscanf, it's OK :
char rdBuf[1024];
unsigned long long frequency=0;
sprintf(rdBuf, "33500000000000");
sscanf(rdBuf, "%llu", &frequency);
Thanks
Vincent