Question:What will be output when you will execute following c code?
#include<stdio.h>
int main(){
    volatile int a=11;
    printf("%d",a);
    return 0;
}
 

A 11 

B Garbage 

C -2 

D We cannot predict 

E Compilation error 

+ Answer
+ Explanation
+ Report
Total Preview: 839

Copyright © 2024. Powered by Intellect Software Ltd