Computer Science, asked by poojithaIPS31931, 2 months ago

What is the output of the program

#include
using namespace std;

int main()
{
for(int i=3; i!=0; i--)
{
cout<

Answers

Answered by darshan32186
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