structure as a function argument

How to use structure as a function argument. https://youtu.be/hplWXRDSNDc?si=u_d7SvPwepdVUnHN #include <stdio.h> struct MyStruct { char a; int i; }; struct MyStruct some_function(char b, int x){ struct MyStruct tmp; tmp.a =…