Hello,
In Python it's easy:
x = {}
x['USD'] = "Dolars"
x['CLP'] = "Pesos"
or
y = {'lat': 23.678900, 'lng': 121.451928, 'name': "Sin City"}
I think most of these kind of problems are solved so where can I get information about dictionaries in C? I don't want to reinvent the wheel.
How do I implement a dictionary in C?