#include<stdio.h>
int main()
{
int *p,a,c=3;
float *q,b;
p=&a;
q=&b;
printf("Please Input the Value of a,b:");
scanf("%d%f",&*p,&*q);
printf("Result:\n");
printf(" %d,%f\n",a,b);
printf(" %d,%f\n",*p,*q);
printf("The Address of a,b:%p,%p\n",&a,&b);
printf("The Address of a,b:%p,%p\n",p,q);
p=&c;
printf("c=%d\n",*p);
printf("The Addrss of c:%x,%x\n",p,&c);
return 0;
}
#include<stdio.h>
void swap1(int x,int y);
void swap2(int *x,int *y);
main()
{
int a,b;
printf("Please input a=:");
scanf("%d",&a);
printf("\n b=:");
scanf("%d",&b);
swap1(a,b);
printf("\nafter call swap1: a=%d b=%d\n",a,b);
swap2(&a,&b);
printf("\nafter call swap2: a=%d b=%d\n",a,b);
}
void swap1(int x,int y)
{
int temp;
temp=x;
x=y;
y=temp;
}
void swap2(int *x,int *y)
{
int temp;
temp=*x;
*x=*y;
*y=temp;
}
#include<stdio.h>
char *reverse(char *str);
char *link(char *strl,char *str2);
int main()
{
char str[30],str1[30],*str2;
printf("Input Reversing Character String: ");
gets(str);
str2=reverse(str);
printf("\nOutput Reversed Character String: ");
puts(str2);
printf("\nInput String1:");
gets(str);
printf("\nInput String2: ");
gets(str1);
str2=link(str,str1);
printf("\nLink string 1 and string 2: ");
puts(str2);
return 0;
}
char *reverse(char *str)
{
char *p,*q,temp;
p=str,q=str;
while(*p!='\0')
p++;
p--;
while(q<p)
{
temp=*q;
*q=*p;
*p=temp;
++q;
--p;
}
return str;
}
char *link(char *str1,char *str2)
{
char *p=str1,*q=str2;
while(*p!='\0')
{
p++;
}
while(*q!='\0')
{
*p=*q;
p++;
q++;
}
*p='\0';
return str1;
}
#include<stdio.h>
#define N 10
void arrsort(int a[],int n);
main()
{
int a[N],i;
for(i=0;i<N;i++)
scanf("%d",&a[i]);
arrsort(a,N);
for(i=0;i<N;i++)
printf("%d ",a[i]);
}
void arrsort(int a[],int n)
{
int *p,*q,temp;
p=a;
q=a+n-1;
while(p<q)
{
while(*p%2!=0)
p++;
while(*q%2==0)
q--;
if(p>q)
break;
temp=*p;
*p=*q;
*q=temp;
p++;
q--;
}
}
原文:https://www.cnblogs.com/ganyiwubo/p/11025925.html