identify tokens in the following program.
#include<iostream>
using namespace std;
int main()
{
cout << "Welcome to the world of C++";
return 0;
}
Answers
Answered by
2
Answer:
using
int
cout
return
Explanation:
token are words or keywords that have specific meaning to the compiler. using is the only token that stick out from other questions.
Similar questions