i wand to get char from the terminal window,
but get a gcc error compiling it.
.........................................
test_demo.c:12:3: warning: format not a string literal and no format arguments [-Wformat-security]
12 | printf(text);
..........................................
1 2 3 4 5 6 7 8 9
int main ()
{
char text;
text = getchar();
// pub to the oder int printf
printf(text);
}