What will be output of the following “c” code?


Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include

#include

void main(){

int a,i=4;

a=- -i+- -i+- -5;

printf("%d %d",a,i);

}

A. 44664
B. -3 2
C. 44599
D. -13 4

Leave a Comment