cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Windows Programming
help with if then else
help with if then else
Jan 14, 2012 at 8:50pm UTC
nhrnjic
(19)
can someone convert this pascal program part in c++ :
if a = 's' then
begin
c = a+b; ?
Jan 15, 2012 at 12:27am UTC
webJose
(2948)
http://www.cplusplus.com/doc/tutorial/control/
Jan 15, 2012 at 4:27am UTC
KyleMiles
(97)
if (a == "s")
{
c = a + b;
}
But for the most part:
http://www.cplusplus.com/doc/tutorial/control/
Topic archived. No new replies allowed.