C Programming
What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));}

None of these
6
7
4
5

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP