take user input c code example
Example 1: c user input
#include
int main()
{
char chr;
printf("Enter a character: ");
scanf("%c",&chr);
printf("You entered %c.", chr);
return 0;
}
Example 2: Syntax To Take Input In C
Integer: Input: scanf("%d", &intVariable); Output: printf("%d", intVariable);
Float: Input: scanf("%f", &floatVariable); Output: printf("%f", floatVariable);
Character: Input: scanf("%c", &charVariable); Output: printf("%c", charVariable);
Example 3: how to get user input in c
#include
//this is for storing numbers
int main(){
int age; //this makes a vairable for you to store the value in
printf("enter in your age: "); //this prints a prompt for the user
scanf("%d", &age); //this takes in the argument given and stores it
//into the address of age
return 0;
}
Example 4: get user input c
int c;
printf( "Enter a value :");
c = getchar( );