function component with props

Certainly! Here's an example of a function component in C language that utilizes props:

#include <stdio.h>

void MyComponent(int prop1, float prop2) {
    printf("Received prop1: %d\n", prop1);
    printf("Received prop2: %f\n", prop2);
}

int main() {
    // Passing props to MyComponent
    MyComponent(10, 3.14);

    return 0;
}

In this example, the MyComponent function is defined to accept two props: prop1 of type int and prop2 of type float. Inside the function, we print the values of both props using printf.

In the main function, we call MyComponent and pass the values 10 and 3.14 as the props. This will result in the function printing the received prop values.

Please note that this example assumes you are using C as the programming language and demonstrates a basic implementation of a function component with props. The actual implementation may vary depending on your specific requirements and the framework or library you are using.