What will be the output of following code segment? #include int main() { int num,a=5; num=-a--; printf("%d %d",num,a); }
Reveal answer
Fill a bubble to check yourself
What will be the output of following code segment? #include int main() { int num,a=5; num=-a--; printf("%d %d",num,a); }