I have the proposal to print on a theater ticket, the date, time, part name (to be typed and scanned by scanf), and the customer's seat number
// declaração da variável.
char PecaTeatral[255];
// pulando para a leitura da string
switch(n){
case 1:
printf("\nNome da peca teatral\n");
scanf("%s", PecaTeatral);
printf("DATA : %s HORA: %s\nPeca : %s \t\t numero da poltrona: %d", __DATE__, __TIME__, PecaTeatral, ingresso_inicial);
break;
// imprimi o ingresso do cliente, apos vendido
...
The difficulty in all this, how can I print a text, because the current code stores a word,