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