Typedef in C

The typedef declaration. https://youtu.be/ydy3JzlXdkc #include <stdio.h> typedef int MyInt; typedef char* MyString; int main() { MyInt i = 150; MyString ms = "Hello World"; printf("The value is = %d\n",i); printf("The…

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 =…