Add Two Integers Using Void Pointers

Code

#include <stdio.h>

int add_two_void_pointers(void *a, void *b) {
    // Your logic here
   int sum;
   int  value1 = *((int*)a);
   int  value2 = *((int*)b);
   sum = value1 + value2;
    return sum;
}

int main() {
    int x, y;
    scanf("%d %d", &x, &y);

    int result = add_two_void_pointers(&x, &y);
    printf("%d", result);

    return 0;
}

Solving Approach



 

Upvote
Downvote
Loading...

Input

10 20

Expected Output

30