General Requirement Solve Hand Try Solve Without Using Compiler Q43887461
General requirement is to solve by hand and try to solve withoutusing any compiler

![(c) structs struct virus int i; structs *p; int main() char signature[25]; char status[20]; int size; } v[2] = { Yankee Dood](https://media.cheggcdn.com/media/71e/71e89f47-4bee-4697-bf96-fae15bcf4a22/phpi4HKMT.png)
{ 2.) Point out the errors, if any, in the following programs: (a) int main() (b) int main() struct employee struct char name[25] ; int age; float bs; char name[25]; char language[10]; struct employee e; strcpy(e.name, “Hacker”); age = 25: printf (“n%s %d”, e.name, age); return 0; struct employee e = { “Hacker”, “C” }; printf(“n%s %d”, e.name, e.language); return 0; (c) structs struct virus int i; structs *p; int main() char signature[25]; char status[20]; int size; } v[2] = { “Yankee Doodle”, “Deadly”, 1813, “Dark Avenger”, “Killer”, 1795 struct s varl, var2; varl.i = 100; var2.i = 200; varl.p = &var2; var2.p = &varl; printf(“n%d %d”, varl.p ->i, var2.p -> main() int i; for(i=0;i<=1;i++) printf (“n%s %s”, v.signature, v.status); return 0; (e) structs char ch; int i; float a; int main() struct s var = { ‘C’, 100, 12.55 }; f(var); g (&var); return 0; void f ( structs v) printf (“n%c %d %f”, v ->ch, v ->i, v ->a); void g (struct s *v) printf (“n%c %d %f”, v.ch, v.i, v.a); Show transcribed image text { 2.) Point out the errors, if any, in the following programs: (a) int main() (b) int main() struct employee struct char name[25] ; int age; float bs; char name[25]; char language[10]; struct employee e; strcpy(e.name, “Hacker”); age = 25: printf (“n%s %d”, e.name, age); return 0; struct employee e = { “Hacker”, “C” }; printf(“n%s %d”, e.name, e.language); return 0;
(c) structs struct virus int i; structs *p; int main() char signature[25]; char status[20]; int size; } v[2] = { “Yankee Doodle”, “Deadly”, 1813, “Dark Avenger”, “Killer”, 1795 struct s varl, var2; varl.i = 100; var2.i = 200; varl.p = &var2; var2.p = &varl; printf(“n%d %d”, varl.p ->i, var2.p -> main() int i; for(i=0;ich, v ->i, v ->a); void g (struct s *v) printf (“n%c %d %f”, v.ch, v.i, v.a);
Expert Answer
Answer to General requirement is to solve by hand and try to solve without using any compiler…
OR