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

2 4 4
2 4 5
8 5 5
2 5 5

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 repeating a set of statements many times.
Helps to avoid repeated programming across programs.

ANSWER DOWNLOAD EXAMIANS APP