C Programming
Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));}

5 5 5
2 5 5
2 4 5
2 4 4

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP