2. Predict the result after executing the following C code: #include void main() { printf("(float)(1/3) = %f \n", float(1/3)); printf("1./3-(float)(1./3) %c= 0 \n", (1./3-(float)(1./3) == 0 ? ' ' : '!')); } Are these result what you have expected?