Answers for "c function pointer in argument"

C
1

c function pointer in argument

void f(void (*a)()) {
    a();
}

void test() {
    printf("hello world\n");
}

int main() {
     f(&test);
     return 0;
}
Posted by: Guest on May-13-2021
1

how to use a pointer as a parameter in c

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
void add(int* a, int* b, int* c)
{
    *c = *a + *b;
}
int main()
{
	int a, b, c;
	a = 3;
	b = 5;
	add(&a, &b, &c);
	printf("%d", c);
}
Posted by: Guest on March-21-2020

Code answers related to "c function pointer in argument"

Code answers related to "C"

Browse Popular Code Answers by Language