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

Class c

Chapter 9 - Practice Set/04_problem4.c:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2
3typedef struct c{
4 int real;
5 int imaginary;
6} Complex;
7
8int main(){
9 Complex c = {1, 2};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected