C program to pass multiple type of arguments to a function
Given different type of variables and we have to pass them to a function and process on them in C.
It’s just a simple program, which is demonstrating an example of passing different type of variables/values to a function.
Here is the function that we are using in the program,
void simpleFun(int rollno , char *name , float marks)
Program to pass different type of variables/arguments to a function in C
Output
need an explanation for this answer? contact us directly to get an explanation for this answer