What will be the output of the following code? #include<stdio.h> 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 the following code? #include<stdio.h> int main() { int num,a=5; num=-a--; printf("%d %d",num,a); }