Question: this is for intro to programing C so please write it simply so i can learn and understand how you did it please, additionaly may

4- This problem is for fun and to understand the importance of braces {} better. Modify the following code to produce the output shown. (25 points) Use proper indentation techniques. You may not make any changes other than inserting braces. The compiler ignores the indentation in a program. The indentation from the following code has been eliminated to make the problem more challenging. (Note: It's possible that no modification is necessary.] if ( y = 8 ) if ( X = 5) printf("@@@@@ "); else printf( "##### "); printf("$$$$$ "); printf("&&&&& "); a) Assuming x = 5 and y = 8, the following output is produced aaaaa $$$$$ && b) Assuming x = 5 and y = 8, the following output is produced. aaaaa &&&&& C) Assuming x = 5 and y = 7, the following output is produced. (Note: The last three printf statements are all part of a compound statement.) $$$$$ &&&&& Note: Solve every part of the problem inside a void function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
