closed by
473 views

Related questions

0 votes
0 votes
0 answers
1
Aakanchha asked Dec 5, 2017
338 views
The answer is given as (A) but according to me it should be (B). Can anyone explain please?
0 votes
0 votes
1 answer
2
Harikesh Kumar asked Dec 4, 2017
373 views
n=3a[++n]=n++ Output : a[4]=4. How?Please explain it
1 votes
1 votes
1 answer
3
Rakshita Jadoun asked Feb 4, 2023
626 views
#include <stdio.h int main() {int i,j,x;scanf("%d ",x);i=1;j=1;while(i<10){j=j*i;i=i+1;if(i==x) break;}return 0;}