| 2 | #include <string.h> |
| 3 | |
| 4 | struct employee |
| 5 | { |
| 6 | int code; // This declares a new user defined data type! |
| 7 | float salary; |
| 8 | char name[10]; |
| 9 | }; // semicolon is important |
| 10 | |
| 11 | int main(){ |
| 12 | struct employee e1, e2; |
nothing calls this directly
no outgoing calls
no test coverage detected