Computer Science, asked by noorislam1771, 4 hours ago

c
error in the following
int a, b = 12
for (b=1; b< =10; b - -);
{
Printf ("In %d", b);
}
getch();​

Answers

Answered by lavanya3602
1

Answer:

In declaration and print statement.

Explanation:

int b = 12;

for (b=1; b< =10; b - -);

{

Printf ("\n %d", b);

}

getch();​

Similar questions