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
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
Geography,
6 months ago
Computer Science,
6 months ago
Physics,
11 months ago
Math,
11 months ago
Science,
1 year ago