Which line in the following program will cause a compiler error? 1 #include 2 using namespace std; 3 int main () 4 { 5 int number = 5; 6 if (number > = 0 && < = 100) 7 cout << "passed./n"; 8 else 9 cout << "failed./n"; 10 return 0; 11 }
+1
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which line in the following program will cause a compiler error? 1 #include 2 using namespace std; 3 int main () 4 { 5 int number = 5; 6 if ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » Which line in the following program will cause a compiler error? 1 #include 2 using namespace std; 3 int main () 4 { 5 int number = 5; 6 if (number > = 0 && < = 100) 7 cout << "passed./n"; 8 else 9 cout << "failed./n"; 10 return 0; 11 }