Computer Science, asked by vinothapalraj, 3 months ago

4. What will be the output of the following program?
#include <stdio.h>
int main()
int i=4;
for (i=0,i=-4;i++) {
print(%d,i);
if(i!--3)
break;
return O​

Answers

Answered by Ninad2426
0

Answer:

This will give an error because variable d (which you have used in the printf function) is not declared anywhere.

Similar questions