get user input in c code example
Example 1: c input output
#include <stdio.h>
int main()
{
int testInteger;
printf("Enter an integer: ");
scanf("%d", &testInteger);
printf("Number = %d",testInteger);
return 0;
}
Example 2: 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 3: 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 4: how to get user input in c
#include <stdio.h>
int main(){
int age;
printf("enter in your age: ");
scanf("%d", &age);
return 0;
}
Example 5: get user input c
int c;
printf( "Enter a value :");
c = getchar( );