What is output of code?

#include <stdio.h>
#include <conio.h>
 
void main()
{
    int i, j, *ptr, *ptr1;
    i = 10;
    j = 10;
    ptr = &i;
    ptr1 = &j;
 
    if(ptr == ptr1)
        printf("True");
    else
        printf("False");
 
    getch();
}

 

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

ATNETWORK
ZUNIA9