निम्नलिखित Arduino कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Arduino code?<break-line><pre><code>void main(){
int k = 0;
double d = 10.21;
printf("%lu", sizeof(k+d));
}
void loop(){}</code></pre>
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code?<break-line><pre><code>#include<stdio.h>
void solve(){
int b = 4;
int res = b++ + ++b + ++b;
printf("%d", res);
}
int main(){
solve();
return 0;
}</code></pre>
निम्नलिखित प्रोग्राम का आउटपुट क्या है?<break-line><break-line>What is the output of the following program?<break-line><pre><code>for(;;){
Statements
}</code></pre>
किसी भी लूप को समय से पहले रोकने और केवल लूप से बाहर निकलने के लिए उपयोग की जाने वाली नियंत्रण संरचना का नाम क्या है?<break-line><break-line>What is the name of the control structure used to stop any loop prematurely and only exit out of the loop, not affecting the running of the rest of the program?