I'm creating a program where I ask the user to enter some of his personal informations, but for some reason I can't figure it out. When I ask the user to enter his birth date and his email, the message appears in a weird way for the user.
#include <stdio.h>
#define MAX  50
char name[MAX],date[MAX],email[MAX],cpf[MAX],tel[MAX],contatip[MAX],esc3[MAX],esc4[MAX];
int main()
{
    printf("\nEnter your name: ");
        scanf("%s",name);
    printf("\nBirth date:"); // The problem is here
        gets(date);
    printf("\Email: ");
        gets(email);
    printf("\nEnter your CPF: ");
        gets(cpf);
    printf("\nCelphone: ");
        gets(tel);
}
 
     
    