Write a program to exchange two variaables without temp
Answer Posted / kadher
void main()
{
int a=10,b=5;
a=a^b;
b=a^b;
a=a^b;
}
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Why is c known as a mother language?
What is static function in c?
How many bytes is a struct in c?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What is the return type of sizeof?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Who developed c language?
Where static variables are stored in memory in c?
Write the control statements in C language
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is && in c programming?
What is the stack in c?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is the difference between a string and an array?