(Choose 1 answer)
#include <stdlib.h>
#include <stdio.h>
int main () {
char a[3] = {'a','b','c'};printf("%s",a);
return 0;
}
Which statement is correct about the output?
A. The output is abc
B. The output is abc followed by some chraracters
C. The output is ab
Exit 21