Problem Statement - Checking for valid Identifiers
Find the valid and invalid identifiers in the following piece of code segment.
int argument=123; char c#='#'; float amar_is_a_beautiful_boy=3.45; int taj mahal=1; int break=0; string file.ext="myfile.txt"; cout<<argument<<endl; cout<<c#<<" "<<amar_is_a_beautiful_boy<<" "<<taj mahal<<endl; cout<<break<<file.ext<<endl;
Solution
sunmitra| Created: 18-Dec-2017 | Updated: 18-Dec-2018|