1,352 views
0 votes
0 votes

Divide the following C + + program:

float limitedSquare(x) float x {
/* returns x-squared, but never more than 100 */
return (x<=-10.0 || x>=10.0)?100:x*x;
}

into appropriate lexemes, using the discussion of Section $3.1.2$ as a guide. Which lexemes should get associated lexical values? What should those values be? 

Please log in or register to answer this question.

Related questions

1 votes
1 votes
2 answers
4