#include <stdio.h> int main() { float f = 'I'; printf("%f", f); return 0; }
Since the ASCII value of I is 73, the same is assigned to the float variable and printed.
Previous Question Next Question
Your comments will be displayed only after manual approval.