08-04-2011 06:28 AM
under strings what is the diff b/w
Tab const
line feed const
carriage constant
end of line constant
if possible explain with a small example please
Solved! Go to Solution.
08-04-2011 10:56 PM
These are just replacements for writing ASCII codes. For instance, If you want to write some text, and you want to input :
A Tab space ( \t ) : you use TAB constant
New Line ( \n ) : you use LINE FEED constant
Carriage or Enter ( \r ) : you use CARRIAGE constant
End of line ( \r\n ) : you use END OF LINE constant
08-05-2011 05:29 AM
Thank u sir
Best regards
nagaraja
INDIA