Hi! please clefy the ans? Select all the valid statements? 1) char a='\u0061'; 2)char \u0061='a'; 3)ch\u0061r a='a'; Ans: All are correct? ------------------
Vegad Arvind
Ranch Hand
Joined: Jan 10, 2001
Posts: 42
posted
0
Hi,
Yes all the correct 1) char a='\u0061'; here \u0061= a > char a = 'a' valid
2) char \u0061='a'; here \u0061 = a > char a = 'a' valid \u0061 is an identifier 3) ch\u0061r a='a'; char a = 'a' valid
Best Regards ! Arvind Vegad
Michael Burke
Ranch Hand
Joined: Jul 29, 2000
Posts: 103
posted
0
What does the r stand for in the last example?
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: ((khalid mughal's)) Ques. on char Confusing?