retagged by
490 views

1 Answer

1 votes
1 votes
Floting point numbers can be written like that using scientific notation in C. So I guess it's a valid token.

Related questions

1 votes
1 votes
1 answer
1
ankit_thawal asked Feb 1, 2018
763 views
1. macros are not considered as tokens in tokenizing.2.#include considered as single token2.stdio.h considered as single token. Are the above statements true?
0 votes
0 votes
1 answer
2
jeewan0011 asked Aug 22, 2016
474 views
What is token and how use it?
2 votes
2 votes
2 answers
3
Rhythm asked Jun 5, 2019
4,151 views
which one of the following string can definitely said to be a token without looking at the next input:+(++,+=)return(return a)*(*=)=(==)++ , ( ) ‘ ; option e is: plu...
14 votes
14 votes
2 answers
4
dd asked Dec 13, 2016
3,408 views
Consider the following C program: int main (void) { in/*this is an example*/z; double/*is it an error?*/y; print( “This is simple” ); return 0; }- How many Different ...