C Programming
What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);}

3 4
2 2
2 4
3 3
2 3

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP