You haven't declared those variables anywhere before trying to use them. My *guess* is that you are trying to reference the 2 string members of your struct. Go back and study how to use structs again then give it another shot. Ask if you come across a part that you don't fully understand. Ask specific questions.
Line 13 you forgot the semicolon after the closing brace on your Datas structure which makes it look to the compiler as though main was declared as Datas int main(), i.e., two return types. Assuming as sadavied suggested that your lines referencing Name and Surname were intended to reference the struct members, you would need to reference them using the dot operator, but you never actually instantiated a variable of type Datas.
Also, I suspect you wanted Name and Surname to be strings and not pointers to strings.
Line 21 single quotes are for use with single character literals only.