Contents
show
What are Punctuators list them in Java?
Punctuators in java:
Punctuators are the punctuation signs used as special characters in Java. Some of the punctuators are: ‘? ‘ ( Question mark), ‘ : ‘ (colon), ‘ ; ‘ (semicolon), ‘.’ ( Dot)
What are Punctuators give example?
Punctuators usually delineate a specific type of C construct, as shown in Table 1-4.
…
Table 1-4 Punctuators.
Punctuator | Use | Example |
---|---|---|
* | Pointer declaration | int *x; |
, | Argument list separator | char x[4] = { ‘H’, ‘i’, ‘!’, ‘ |