What will be the output of the program?
#include stdio.h
int main(void)
{
int a = 9;
float x;
x = a / 2;
printf("%f", x);
return 0;
}


Posted on by