• retagged by
1,461 views
3 3 votes

Consult the language reference manuals to determine

  1. the sets of characters that form the input alphabet (excluding those that may only appear in character strings or comments),
  2. the lexical form of numerical constants, and
  3. the lexical form of identifiers, for each of the following languages:  

 

  1.  C
  2. C++
  3. C#
  4. Fortran
  5. Java
  6. Lisp
  7. SQL

Please log in or register to answer this question.

Position:
Show:

Related questions

3 3 votes
0 0 answers
1.4k
1.4k views
admin asked Aug 5, 2019
1,414 views
Most languages are case sensitive, so keywords can be written only one way, and the regular expressions describing their lexeme is very simple. However, some languages, l...
0 0 votes
1 1 answer
1.6k
1.6k views
admin asked Jul 27, 2019
1,611 views
Tagged languages like HTML or XML are different from conventional programming languages in that the punctuation (tags) are either very numerous (as in HTML) or a user-def...
0 0 votes
0 0 answers
1.7k
1.7k views
admin asked Jul 27, 2019
1,712 views
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 appropria...
4 4 votes
0 0 answers
3.1k
3.1k views
admin asked Aug 5, 2019
3,137 views
Write regular definitions for the following languages:All strings of lowercase letters that contain the five vowels in order.All strings of lowercase letters in which the...