Answer (Choose 1 answer)
What will be the output of the following code fragment?
#include <stdio.h>
#include <string.h>int main()
{
char str1 = "bca";char str2] = "bcd"printf("%d", strcmp(str1, str2));
A. 0
B. A positive integer
C. A negative integer
D. Nothing (no output)
46