I have these two lines of code that which I try to printf on the console, however, in objective-C I get an error saying that: format specifies type 'double' but the argument has type 'float (*)()'
How to properly make this works in Obj-C?
SomeValue = (float (*)())dlsym(someServices, "someMethod");
printf("%f\n", someValue);
Thanks in advance!