Tag: programming languages
Questions Related to programming languages
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); }
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); }