#include<stdio.h>
int main(void)
{
char ch;
puts("Press any key");
ch=getchar();
printf("Key=%s",ch);
return(0);
}
При компиляции выводится сообщение:
test.c: In function ‘main’:
test.c:7: warning: format ‘%s’ expects type ‘char *’, but argument 2 has type ‘int’
Программа успешно запускается, но вываливается с Segmentation fault после ввода любого символа.