# Exercise 8
Will this program compile? What is output of this program? Do not use IDE to answer this question.
if (130 / 130)
{
Console.WriteLine("Success");
}
else
{
Console.WriteLine("Failure");
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
CodingSchool.pk Will this program compile? What is output of this program? Do not use IDE to answer this question.
if (130 / 130)
{
Console.WriteLine("Success");
}
else
{
Console.WriteLine("Failure");
}