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
Hello, world\n$

ALSO quotes interpolate variables and SPECIAL characters, whereas same thing does not work for single.



Discussion

No Comment Found