Computer Science, asked by aroranantika, 11 months ago

what is the output of below C program
#include <stdio.h>
int main() {
for(int i = 0; i < 3; i++){
for(int j = 1 ;j< 2;j++) {
i++;
printf("%d",j);
}
}
return 0;
}​

Answers

Answered by Anonymous
0

it will print error

d is not initiallized in ur program

hope this helps u

plz mark me as brainlist

in place of 'd', u should write 'i'

Similar questions