cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
declaration
declaration
Nov 5, 2012 at 6:00pm UTC
Stunning
(18)
how can i declare the decimal number, is it float or double?
Nov 5, 2012 at 6:05pm UTC
Chervil
(7320)
Either. But double is preferred.
Nov 5, 2012 at 6:24pm UTC
Stunning
(18)
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...
Nov 5, 2012 at 6:29pm UTC
Stewbond
(2827)
1
2
3
4
5
6
7
struct
employee {
bool
employed; }; employee dave; dave.employed =
true
;
Topic archived. No new replies allowed.