declaration

how can i declare the decimal number, is it float or double?
Either. But double is preferred.
alright..^^ thank you, i need ur help again huhu.. if the question say, the variable employed is equal to Y, how can i declare the employee...huhu i hope u get my meaning...
1
2
3
4
5
6
7
struct employee
{
  bool employed;
};

employee dave;
dave.employed = true;
Topic archived. No new replies allowed.