What is the output of the program
#include
using namespace std;
int main()
{
for(int i=3; i!=0; i--)
{
cout<
Answers
Answered by
1
Answer:
A chained statement cannot be used to initialize variables at the time of declaration. Hence the statement a = b = c = 0; is an illegal statement. However following way a legal syntax and can be used in C++ or C.
Explanation:
Similar questions
Computer Science,
2 months ago
English,
8 months ago