String copy using String function

#include<stdio.h>
#include<conio.h>
#include<string.h>        
void main(){  
    char *s , *t ;                
    printf("Enter String : ");                
    scanf("%s",s);
    strcpy(t , s);               
    printf("
After String copy ");               
    printf("%s",t);
    getch();
}