Posts by Beto • 13 points
2 posts
-
0
votes1
answer105
viewsQ: Error when printing string
#include<stdio.h> int main(){ int numero,unidade,dezena,centena; char *unidades[]={"I","II","III","IV","V","VI","VII","VIII","IX"}; char…
-
0
votes1
answer119
viewsQ: Change string using function parameter
#include <stdio.h> #include <stdlib.h> #include <string.h> void menu_principal(char* monstro1, char* monstro2){ int escolha; char monstro[20]; printf("King of Tokyo\n\n");…