swap two integer variables without using a third temporary
variable?
Answer Posted / abhinav lohar
t=a;
a=b;
b=t;
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
What is selection sort in c?
How can I write a function analogous to scanf?
What are structure types in C?
How can I manipulate strings of multibyte characters?
What functions are used in dynamic memory allocation in c?
Explain what are the __date__ and __time__ preprocessor commands?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
In C language what is a 'dangling pointer'?
Why double pointer is used in c?
What is the difference between null pointer and wild pointer?
What is difference between Structure and Unions?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is size of union in c?
Do you know pointer in c?