Last active
July 25, 2019 00:55
-
-
Save Silva97/88095fe55de6a4e17bde0447b49b4c61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| int main(void) | |
| { | |
| fputs("Dia da semana(1~7): ", stdout); | |
| printf("Nome do dia: %s\n", | |
| ((char [][16]){ | |
| "Domingo", | |
| "Segunda", | |
| "Terça", | |
| "Quarta", | |
| "Quinta", | |
| "Sexta", | |
| "Sábado" | |
| })[ ({ int _(){ int r; scanf("%d", &r); return r; } _; })() - 1 ]); | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment