12345678910



Question 1: What will be output if you will compile and execute the following c code?


#include<stdio.h>
int main(){
float f;
f=3/2;
printf("%f",f);
return 0;
}

1. 1.5
2. 1.500000
3. 1.000000
4. None of above