Hi i am creating a sample program like this
#include<stdio.h>
int main()
{
typedef struct {
int a;
int b;
}v;
v m;
int g =54;
m=(v)g;
}
while compiling i am getting error as conversion to non-scalar type requested
. what is the problem here.