Does C have classes?

c, class

Solution

No, C doesn't have classes. That said, there are ways of simulating object-oriented programming in C - a quick Google search should yield some useful results.

Problem

I've been asked to implement a "C program with Classes". Does C have classes, or has there been some kind of misunderstanding?

Original source

Related problems