0
Please who knows how to use "if" in c++
Example if a=yes print "good"
3 Answers
+ 1
Complete lesson 12.1 if statements in c++.
It tells you clearly..
+ 1
Jayakrishnađźđł thanks alot
0
// you have to type equalant opraror(==) in if not equal oprator(=)
// pardon my grammer.
// hope it helps.
if ( a==yes)
{
std::cout << "Good";
}
return 0;