Consider the following structure definition
struct S
{
int i,j;
}x,y;
Find the valid C statement using the above structure.1
Struct S z=[1,2];
2
x=y;
3
Structures can be passed as function parameter.
4
None of these
Consider the following structure definition
struct S
{
int i,j;
}x,y;
Find the valid C statement using the above structure.