O seguinte erro aparece: [Error] 'nome' was not declared in this scope [Error] 'telefone' was not declared in this scope Aqui está o código:
#include<stdio.h>
#include<stdlib.h>
int main(){
struct registro{
char nome[20];
char telefone[20];
};
typedef struct registro r;
printf("Digite seu nome:\n");
scanf(" %c", &nome.r);
printf("Digite seu telefone:\n");
scanf(" %s", &telefone.registro);
printf("Nome: %s\n", nome.registro);
printf("Telefone: %s\n", telefone.registro);
}