दिए गए C कोड में, लूप के लिए निष्पादित करता है:<break-line><break-line>In the given C code, for loop executes for:<break-line><pre><code>#include<stdio.h>
void main () {
int x=10;
for ( ; ; ) {
printf("%d\n",x);
}
}</code></pre>
दिए गए कोड के अनुक्रमण के लिए सही विकल्प चुनें:<break-line><break-line>Choose the correct option for indexing of the given code:<break-line><pre><code>int main () {
int xyz[8];
return 0;
}</code></pre>
एरे वाले C प्रोग्राम का सही विकल्प चुनें:<break-line><break-line>Choose the correct option of C program having array:<break-line><pre><code>int main () {
int xyz (4) = [10,20,30,40];
printf ("%d", xyz (1));
}</code></pre>
Correct Answer: If-Else के अन्दर कई डिसिशन के लिए कई स्टेटमेंट का उपयोग किया जा सकता है / Multiple statements can be used for numerous decisions inside If-Else