// Online C compiler to run C program online
#include <stdio.h>
int main() {
// Write C code here
double f = 0.23;
int padding = 0; // make sure printf hits a null character
char* p = (char*)&f;
printf("%s\n", p);
return 0;
}