Skip to content

Instantly share code, notes, and snippets.

View Tonaion02's full-sized avatar

Tonaion Tonaion02

  • Unisa
  • Terzigno. Naples
View GitHub Profile
@Tonaion02
Tonaion02 / main.c
Last active October 10, 2024 17:23
// Class that must be inherited (START)
struct A {
int a;
};
// Class that must be inherited (END)
// Class that must inherit from A(parent class) (START)
struct B {
struct A super;