Hello everybody.
I have a problem how to handle three arguments giving to main(int argc, char **argv).
I have to implement a programm that receives first a datafile as input, the second argument is a double number and the third is a bool variable, so that I starts the programm as follows:
execute ./filename.txt 0.75 true
How can I handle these three arguments and reading them out in a char, a double and a bool variable???