โช 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;
}
#include
int main(){
int num,a=15;
num=- - - -a--;
printf("%d %d",num,a);
return 0;
}