how to swap two integers 1 and 32767 without using third
variable
Answer Posted / sathwika
a=b-a;
b=b-a;
a=a+b;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How a string is stored in c?
What is a structure member in c?
What are the keywords in c?
Explain what is operator promotion?
Why c is called procedure oriented language?
Can a void pointer point to a function?
What are the types of operators in c?
What is the code for 3 questions and answer check in VisualBasic.Net?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Find MAXIMUM of three distinct integers using a single C statement
Is c programming hard?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is typedef struct in c?
What is multidimensional arrays
Write a program of prime number using recursion.