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
function calling
function calling
Mar 20, 2014 at 8:25am UTC
chofs
(49)
hey guys just wanted to know that if i have two functions other than main in my code....can i choose which function out of the two when a specific condition is met to call when i need it......thanx in advance
Mar 20, 2014 at 9:04am UTC
ne555
(10692)
1
2
3
4
if
( condition ) foo();
else
bar();
Mar 20, 2014 at 9:11am UTC
chofs
(49)
thanx
Topic archived. No new replies allowed.