c input variables code example
Example 1: c user input
#include <stdio.h>
int main()
{
char chr;
printf("Enter a character: ");
scanf("%c",&chr);
printf("You entered %c.", chr);
return 0;
}
Example 2: print to screen c
printf("what do u print on screen"); //use \n between ""
//to skip a line