write a function which accept two numbers from main() and
interchange them using pointers?
Answers were Sorted based on User's Feedback
Answer / sarathi
#include<stdio.h>
main()
{
int *p,*q;
*p=10;
*q=20
void swap(int &p,int &q);
}
void swap(int *x,int *y);
{
int *tmp;
*tmp=*x;
*x=*y;
*y=*x;
printf("%d,%d",*x,*y);
}
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / amritpal singh
#include<iostream.h>
#include<conio.h>
void main()
{
int a,b;
void swap(int *,int *); //Functioin Prototype
clrscr();
cout<<"\nEnter the number::\n";
cin>>a>>b;
cout<<"\nValues before INterchange are \na=<<" and \nb="<<b;
swap(&a,&b); //Functiion Calling
cout<<"\nValues after interchange\na=<<" and \nb="<<b;
getch();
}
void swap(int *a,int *b) //Function Defintioon
int temp;
temp=*a;
*a=*b;
*b=temp;
}
Thanks friends if any mistake pls coorect it by again urs
answer
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / vignesh1988i
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,*ptr1,*ptr2,temp;
printf("enter the values ");
scanf("%d%d",&a,&b);
ptr1=&a;
ptr2=&b;
temp=(*ptr1);
*ptr=(*ptr2);
*ptr2=temp;
printf("\n now the values are a=%d b=%d ",a,b);
getch();
}
thank u
| Is This Answer Correct ? | 4 Yes | 5 No |
What is array in c with example?
please send me the code for multiplying sparse matrix using c
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database
2 Answers TCS, Unisys, Webyog,
What are structural members?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
what is a function pointer and how all to declare ,define and implement it ???
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
What does the error 'Null Pointer Assignment' mean and what causes this error?
how do we remove the printed character in printf statement and write next it it