In c, '
is used for character constants, where as "
is used for a string
The printf
function in c needs a string, so your code printf('numero');
will result an unexpected behavior.
Instead, use printf("numero");
You can read this small tutorial for more help