Question:What will be output of the following c program?
#include<stdio.h>
int main(){
    int _=5;
    int __=10;
    int ___;
    ___=_+__;
    printf("%i",___);
    return 0;
}
 

A 5 

B 10 

C 15 

D Compilation error 

E None of these 

+ Answer
+ Explanation
+ Report
Total Preview: 697

Copyright © 2024. Powered by Intellect Software Ltd