I have created a basic .ini
file called configuration.ini
. This file looks as follows:
[Application]
no_of_applications= 4;
[states]
title = "Config File States available";
name = 'Active, Deactivated, Hot';
[reaction]
reac_type = ["switch_schedule", "activate_app", "disable_app";
Now I intend to read this .ini file from my C program. I have included the #include <configuration.ini>
line in my C program. I just want to read the title from the section 'states' in the C program i.e
#include<stdio.h>
#include<configuration.ini>
int main()
{
//read the variable 'title' from 'states' and print it
return 0;
}
Can somebody tell me how can I do that?