C Programming
What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;}

9
6
Error
5
None of these

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP