Sorry, there was some issue with the message. It has been corrected now.
The correct code for this lesson is:
***
#include
int main() {
double doubly = 12345.123456;
long int longy = 12345678900;
short int shorty = 1234;
unsigned char ch = 'Z';
printf("This is doubly: %lf\n", doubly);
printf("This is longy: %ld\n", longy);
printf("This is shorty: %ld\n", shorty);
printf("This is ch: %c", ch);
return 0;
}
***