Can anyone elobrate me about Name Mangling?
i tried to get name mangling for the below,
struct sample
{
int a;
char b;
int a[1];
};
int myfun(int a, int b, int c[], struct a[])
{
return 0;
}
int main()
{
struct sample Mystruct[2];
int a, b, c[9];
//Trying to get mangling for variable c and MyStruct for how many are allocated other than a, b.
d = myfun(a, b, c, Mystruct);
return 0;
}
I can't get name mangling for variable 'c' index.
When i build the above code and found name mangling for single type only for int array and struct.