Computer Science, asked by kavikamasani546, 5 months ago

What will be the output of the following program?
#include <stdio.h>
voidmain() {
for(int i=0; i<10;i=i++) {
if((i ==3)|| (i%3== 1))
continue;
else
printf("%d", i++);
3
}
278.0
247.0
1369.0
Compilation error​

Answers

Answered by abhigjnacs
0

Answer:

this question is not there in my syllabus

Similar questions