फंक्शन के साथ C प्रोग्राम का आउटपुट क्या होगा?<break-line><break-line>What is the output of C program with functions?<break-line><pre><code>int main() {
int a = 0;
printf("AJAY");
return 1;
printf("VIJAY");
return 1;
}</code></pre>
C प्रोग्राम का आउटपुट क्या है?<break-line><break-line>What is the output of C Program?<break-line><pre><code>int main() {
int k = 10;
while(k <= 12) {
printf("%d ", k);
k++;
}
return 0;
}</code></pre>
जब a = 4, तो नीचे दी गई स्टेटमेंट में b का मान क्या होगा?<break-line><break-line>When a = 4, what is the value of b in the given statement?<break-line>b = (a > 6 ? 4 : 6);