Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
निम्नलिखित C प्रोग्राम कोड का आउटपुट क्या है?
int i = 0;
for (; i <= 5; i++);
printf("%d" ,i);
1
0, 1, 2, 4, 5
2
6
3
5
4
1,2,3,4,5
निम्नलिखित C प्रोग्राम कोड का आउटपुट क्या है?
int i = 0;
for (; i <= 5; i++);
printf("%d" ,i);