C Programming
What will be the output of the following program?void main(){ int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d);}

c=3 d=3
c=3 d=5
c=5 d=3
c=5 d=5

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Makes the debugging task easier.
All of these
Helps to avoid repeated programming across programs.
Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP