# Exercise 1
Will this program compile? What is output of this program? Do not use IDE to answer this question.
int num = 197;
if (num / 13 < 0)
{
Console.WriteLine("Hello");
}
1
2
3
4
5
2
3
4
5
CodingSchool.pk Will this program compile? What is output of this program? Do not use IDE to answer this question.
int num = 197;
if (num / 13 < 0)
{
Console.WriteLine("Hello");
}