MCPcopy Create free account
hub / github.com/CodeWithHarry/The-Ultimate-C-Programming-Course / employee

Class employee

Chapter 9/04_pointer_to_struct.c:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2
3struct 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
10int main()
11{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected