How to swap values between two variables without using a
third variable?
Answer Posted / adil
string a = "adil ahmad", b = "anuj gupta";
a = a + b;
b = a.Substring(0, a.Length - b.Length);
a = a.Substring(b.Length, a.Length - b.Length)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is the system development cycle
hi This is radhika.Can anyone help me to know the question papers of NATIONAL INFORMATICS CENTRE for the post of scientific officer/engineer? if anyone know plz tell me question paper pattern
< DL Compact > tag is used for
What are the Short cut Keys of Tally ERP?
in teradata level primary in table level allows duplicates why?
Have you used callsymputx? what points need to be kept in mind when using it?
how can i split string in a textbox in windows appication using C#.net
a characteristic of a multiprogramming is? a.simultaneous exe of pgm instr 4m 2 appli b.concurrent processing of 2 r more prgms c.multiple cpu s d.all the abov
Need guidewire related Documents(Interview Question/Tips/Best Practice/Dumps)
What is the entry point function of a DLL?
What's the difference b/w Table & Templete in Smartform?
what is the certificates in biztalk?
Write a program to find factorial of a number using functions
why not instantiating servet using new operator?
Busy waiting is a method whereas a taskwaits for a given event by continiously checking for an event to occur. What is the main problem with this approach