Answers for "how to pass value to pointer in c"

C
2

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 "how to pass value to pointer in c"

Code answers related to "C"

Browse Popular Code Answers by Language