Is it possible to get an input from the user during the execution of other actions of the program ?
For example
I am printing a string and i want simultaneously to take the value of a variable from the user during the printing action (or whatever action)
Is it possible and if yes how is it done ?
Comments
int get;
printf("Enter value");
scanf("%d",&get);
int get;
printf("Enter value");
scanf("%d",&get);
int get;
printf("Enter value");
scanf("%d",&get);