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

Loading

โœช Choose the correct option.

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


#include
int main(){
int num,a=15;
num=- - - -a--;
printf("%d %d",num,a);
return 0;
}

A. 15 15
B. 14 14
C. 14 15
D. 15 14