#include <stdio.h>
int main() {
int a = 54;
printf("The value of a is : %d", a);
float b = 5.68975368;
printf("The value of b is : %.2f", b);
double c = 4.78956876;
printf("The value of b is : %lf\n", c);
printf("The value of b is : %.3lf\n", c);
char d = 'w';
printf("The value of d is : %c\n", d);
char e[] = "Your attention please";
printf("The value of e is : %s\n", e);
int h = 255;
printf("Hexadecimal value is : %x\n", h);
printf("Hexadecimal value is (UPPERCASE) : %X\n", h);
printf("octal value is : %o\n", h);
return 0;
}