Im practicing with the toupper function but i can make this work, always crash at the point of the printf so i think arguments are bad, or so.
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main (void){
char pepito[10];
puts("\nTell me something: \n");
scanf("%9s", pepito);
puts("\a");
printf("Could be this?: %s", toupper(pepito[2]));
system("pause");
}