Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
		
			
				
	
	
		
			18 lines
		
	
	
		
			419 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			419 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| /* n_22.t:  Tokenization of preprocessing number.   */
 | |
| 
 | |
| #define EXP         1
 | |
| 
 | |
| /* 22.1:    12E+EXP is a preprocessing number, EXP is not expanded. */
 | |
| /*  12E+EXP;    */
 | |
|     12E+EXP;
 | |
| 
 | |
| /* 22.2:    .2e-EXP is also a preprocessing number. */
 | |
| /*  .2e-EXP;    */
 | |
|     .2e-EXP;
 | |
| 
 | |
| /* 22.3:    + or - is allowed only following E or e, 12+EXP is not a
 | |
|         preprocessing number.   */
 | |
| /* Three tokens: 12 + 1;    */
 | |
|     12+EXP;
 | |
| 
 |