#include<stdio.h>
#include<stdlib.h>
int main(){
char str[10];
char *pstr;
printf("Enter str string: ");scanf("%s",str);
printf("Enter pstr string: ");
pstr=(char *)malloc(sizeof(char)*10);
scanf("%s",pstr);
printf("\nYour str string is:%s\n",str);
printf("Your pstr string is:%s\n",pstr);
system("pause");
return 0;
}
沒有留言:
張貼留言