#include <stdio.h>
void main(void){
char a;
int b;
float c;
long d;
double e;
/* afisam un mesaj pentru utilizator */
printf("Introduceti un char, un int, un float, un long si un double:");
/* citim */
scanf("%c %d %f %ld %lf", &a,&b, &c, &d, &e);
/* afisam */
printf("Ati introdus %c %d %f %ld %lf", a, b, c, d, e);
}