Showing posts with label #define. Show all posts
56

56

In the following program which one will run without any errors?: #define a 2 int main() { int b=2; switch(b) { case a: printf("%d"...
Read More
29

29

#includedeny stdio.h > #define shark(s) printf("%d",s); #define srini(b) b-1 int main() { shark(2*srini(2)) } Output: 3
Read More