write a program to swap Two numbers without using temp variable.
Answer Posted / susa
printf("number present in a",&b);
printf("number present in b",&a);
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Explain what are run-time errors?
What is pointer and structure in c?
what is the significance of static storage class specifier?
How is a null pointer different from a dangling pointer?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How do you override a defined macro?
C program to find all possible outcomes of a dice?
What does the && operator do in a program code?
What are qualifiers in c?
Define and explain about ! Operator?
Is exit(status) truly equivalent to returning the same status from main?
Where register variables are stored in c?
Is a pointer a kind of array?
Tell me when would you use a pointer to a function?
Define macros.