What will be the output of the given program?
int main()
{
displayOut();
return 0;
}
int displayOut()
{
printf(Hi I am Robot\\n);
}
Reveal answer
Fill a bubble to check yourself
What will be the output of the given program?
int main()
{
displayOut();
return 0;
}
int displayOut()
{
printf(Hi I am Robot\\n);
}