how to swap 4 number without using temporary number?
Answer Posted / sandeep
a=a^b;
b=a^b;
a=a^b;
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Why does notstrcat(string, "!");Work?
Why can arithmetic operations not be performed on void pointers?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is calloc() function?
How variables are declared in c?
Define recursion in c.
How can I remove the trailing spaces from a string?
What is 1f in c?
how to introdu5ce my self in serco
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is indirection in c?
Why is c called a structured programming language?
Can we assign string to char pointer?
What are the basic data types associated with c?
What does != Mean in c?