InterviewSolution
Saved Bookmarks
| 1. |
Read the following lines and differentiate single and double quote. |
|
Answer» 1. print "Hello, world\n"; 2. print 'Hello, world\n'; Both will gives you DIFFERENT result like this :- Hello, world ALSO quotes interpolate variables and SPECIAL characters, whereas same thing does not work for single. |
|