What is output of code?

#include <stdio.h>
#include <conio.h>
#include <string.h>
 
void main()
{
    char str1[] = "vncoding";
    char str2[] = "vncoding";
    if (strcmp(str1, str2))
        printf("Equal");
    else
        printf("Unequal");
 
    getch();
}

 

Suy nghĩ trả lời câu hỏi trước khi xem đáp án

ATNETWORK
ZUNIA9