ok, below is the code that i have tried and still not working;
#include <stdio.h>
int main ()
{
char Name;
int Age;
int Date_Of_Birth;
float Place_Of_Birth;
float Email_Address;
printf ("Name:");
scanf ("%c",&Name);
printf ("Age:\n");
scanf ("%d",&Age);
printf ("Date Of Birth:\n");
scanf ("%d",&Date_Of_Birth);
printf ("Place Of Birth:\n");
scanf ("%s",&Place_Of_Birth);
printf ("Email Address:");
scanf ("%s",&Email_Address);
return 0;
}
Did i wrote the wrong code?