An example to study scope & designated initializer
struct Point4D
{
int x;
int y;
int z;
int w;
} A={.y=5,15};
int main(){
printf("\nThe 4D point A is (%d,%d,%d,%d).",A.x,A.y,A.z,A.w);
struct Point4D B ={10,20};
printf("\nThe 4D point B is (%d,%d,%d,%d).",B.x,B.y,B.z,B...
kaustubhk.hashnode.dev1 min read