| 9 | }; // semicolon is important |
| 10 | |
| 11 | int main(){ |
| 12 | struct employee e1, e2; |
| 13 | e1.code = 4511; |
| 14 | strcpy(e1.name, "Harry"); |
| 15 | e1.salary = 54.44; |
| 16 | |
| 17 | printf("%d %f %s", e1.code, e1.salary, e1.name); |
| 18 | |
| 19 | return 0; |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected