C Programming
What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50}

0
10..50
10..10
Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP