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

Function main

Chapter 9/01_structure.c:11–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9}; // semicolon is important
10
11int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected