What is the output of this C program.
#includestdio.h
void main ()
{
int a=5,b=2;
float c=(float)a/b;
printf("value of c = %.2f",c);
}

Posted on by