โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
#include
int main() {
char dest[] = {97, 97, 0};
char src[] = "aaa";
int i;
if((i = memcmp(dest, src, 2))==0) {
printf("Got it");
}
else {
printf("Missed");
}
return 0;
}