#include <stdio.h>
#include <conio.h>
int main(){
int inputInteger;
char inputCharacter;
float inputFloat;
printf("Enter an Integer, Character and Floating point number\n");
scanf("%d %c %f", &inputInteger, &inputCharacter,
&inputFloat);
printf("\nInteger you entered is : %d", inputInteger);
printf("\nCharacter you entered is : %c", inputCharacter);
printf("\nFloating point number you entered is : %f",
inputFloat);
getch();
return 0;
}