Prog#232: read from k/b & write into file single record

/*
read from k/b & write into file single record
Program#232
*/
#include<stdio.h>
main(int argc,char *argv[])
{
int i,p,q;
char a[512];
union xyz{
struct bio{
char name [20], addr [20];
int age;
float salary;
}a;
char b[sizeof(struct bio)];
};
union xyz m;
if(argc!=2)
{
printf("error: no.of arg");
return 0;
}
p=open(argv[1], 1);
if(p==-1)
{
printf("file open error");
return 0;
}
scanf("%s %d %f %s", m.a.name, & m.a.age, & m.a.salary, m.a.addr);
i=write(p,m.b, sizeof(struct bio));
close(p);
}