I should calculate the average value of 4 letters as floating point.
int main() {
char c1, c2, c3, c4;
printf("Bitte geben Sie vier einzelne Zeichen ein: ");
scanf("%c %c %c %c", &c1, &c2, &c3, &c4);
printf("ASCII Codes: %d %d %d %d\n", c1, c2, c3, c4);
printf("ASCII Code (Mittel,fl): %f \n", atof((const char *) c1+c2+c3+c4)/4));
return 0;
}