Point out the error, if any, in the following program.
main()
{
int ( *p )() = fun;
( *P ) ();
}
fun ()
{
Printf ( "\nLoud and clear" );
}5
1047 5b5cc7dde4d2b419777515f6
Q: Point out the error, if any, in the following program. main() { int ( *p )() = fun; ( *P ) (); } fun () { Printf ( "\nLoud and clear" ); }
- Show Answer
- Workspace
- Discuss