Function
Function
h>
2 #include<string.h>
3 struct emplyee{
4 char name[30];
5 int phone;
6 float salary;
7 }per1;
8
9 int main(){
10 per1.phone=1034;
11 per1.salary=13828.0;
12 //per1.name[30]=saikat;
13
14 printf(" Enter phone Number: %d \n",per1.phone);
15 printf(" Enter salary Number: %.2f \n",per1.salary);
16 //printf(" Enter Name: %c",per1.name);
17
18 return 0;
19 }
20