C++ terms(set 1) Hangman

 
hangman
                                       
                                                                                                                       
 
 

 
 

 
 

 
Teachers and Webmasters: Copy-and-paste the HTML code below into your web page to have the Hangman game displayed on your web page.


 
www.eapps.com




Copyright ©2001-2008 John Weidner All rights reserved.
About -  Terms of Service -  Privacy Statement



c++ term Description Example
int  whole number  -1, 0, 1  
double  decimal  -1.2, 0.1  
unsigned  non negative  1, 0, 2  
string  text  "Hello"  
!=  not equal to  5!=76  
==  equal to  5==5  
>=  greater or equal to  5>=4  
||  or  a||b  
&&  and  a&&b  
//  comment  //Program 1