Question:What will be output of the following c program?
#include<stdio.h>
int main(){
    int max-val=100;
    int min-val=10;
    int avg-val;
    avg-val = max-val + min-val / 2;
    printf("%d",avg-val);
    return 0;
}
 

A 55 

B 105 

C 60 

D Compilation error 

E None of these 

+ Answer
+ Explanation
+ Report
Total Preview: 639

Copyright © 2024. Powered by Intellect Software Ltd