#include <stdio.h>
int main() {
int numeroescolhido;
printf("Digite um número ");
scanf("%d", &numeroescolhido);
for(int i = 1; i < 11; i++) {
printf(numeroescolhido * i);
}
}
Aparece c:\mingw\include\stdio.h:454:38: note: expected 'const char *' but argument is of type 'int' _CRTIMP __cdecl __MINGW_NOTHROW int printf (const char *, ...);
Por que?