Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 837 Vote(s) - 3.51 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Callback with parameters

#1
Im trying to figure out how to use callbacks with parameters in C. The following isnt working. What is the best way to archieve it? (passing arguments for the callback function)

#include <stdio.h>

void caller(int (*cc)(int a)) {
cc(a);
}

int blub(int a) {
printf("%i", a);
return 1;
}

int main(int argc, char** argv)
{
caller(blub(5));
return 1;
}
Reply

#2
`caller` expects a function pointer and you're giving it an integer. You need just `caller(blub)`.

Also `int (*cc)(int a)` is invalid syntax.

void caller(int (*cc)(int), int a) {
cc(a);
}

int main(int argc, char** argv)
{
caller(blub, 5);
return 1;
}

Is probably the closest thing to your code which could work.
Reply

#3
You are doing the call before passing the function, not passing the callback function itself. Try this:

#include <stdio.h>

void caller(int (*cc)(int ),int a) {
cc(a);
}

int blub(int a) {
printf("%i", a);
return 1;
}

int main(int argc, char** argv)
{
caller(blub, 1000);
return 1;
}
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through