I defined 4 integers variable in my C program and then took print of addresses of all these four variables, what i saw is, "It is showing difference of 12 decimal numbers between two addresses but we know that size of 'int' data type in VS2019 is 4 byte". So please help me out.
Here is the C source code-
include<stdio.h>
int main()
{
int i = 10, j = 12, k = 90, l = 76;
printf("%d\t%d\t%d\t%d\n", &i, &j, &k, &l);
return 0;
}