Find out the output of the given program or error if any.
Int main()
{
printf(Hello from main,);
int inside()
{
printf(inside,);
int deepinside()
{
printf(and deepinside function\\n);
}
}
}
Reveal answer
Fill a bubble to check yourself