Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 406 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 406 Bytes

About

This is a concept about implementing classes in C.

Compiled with gcc (GCC) 13.0.1 20230421 (prerelease).

$ gcc -std=c2x -pedantic main.c car.c motorcycle.c terrestrial.c vehicle.c
$ ./a.out
Common name: Car
Particular name: Polito
Number of wheels: 4

Common name: Motorcycle
Particular name: Verde
Number of wheels: 2

Common name: Motorcycle
Particular name: Rojo
Number of wheels: 2