taking inputs in c code example
Example 1: print to screen c
printf("what do u print on screen"); //use \n between ""
//to skip a line
Example 2: how to get user input in c
#include <stdio.h>
//this is for entering and storing strings
int main(){
char name[20];
printf("Enter a name : ");
scanf("%s", &name);
printf("the name entered is: %s\n", name);
return 0;
}