What would be the output of the following program?
main()
{
extern int fun ( float );
int a;
a = fun ( 3. 14 );
printf ("%d", a);
}
int fun ( aa )
float aa ;
{
return ( (int) aa );
}5
723 5b5cc7dde4d2b419777515f7
Q: What would be the output of the following program? main() { extern int fun ( float ); int a; a = fun ( 3. 14 ); printf ("%d", a); } int fun ( aa ) float aa ; { return ( (int) aa ); }
- उत्तर देखें
- Workspace
- चर्चा